Skip to content

Commit 1475b9d

Browse files
authored
fix(date_utils): fix typo
1 parent b447b19 commit 1475b9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/date_utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ export function getLocaleObject(localeSpec) {
377377
}
378378

379379
export function getFormattedWeekdayInLocale(date, formatFunc, locale) {
380-
return typeof formatFunc === "function" ? formatFunc(date, locale) : formatDate(date, "EEEE", locale));
380+
return typeof formatFunc === "function" ? formatFunc(date, locale) : formatDate(date, "EEEE", locale);
381381
}
382382

383383
export function getWeekdayMinInLocale(date, locale) {

0 commit comments

Comments
 (0)