From 25abde35807a6e5db66cc5891280ffdb11ed2d6c Mon Sep 17 00:00:00 2001 From: Luane Date: Thu, 8 Sep 2022 16:22:09 +0900 Subject: [PATCH] Fixed typo in package name --- docs/display/format.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/display/format.md b/docs/display/format.md index f65548590..eb906573d 100644 --- a/docs/display/format.md +++ b/docs/display/format.md @@ -53,10 +53,10 @@ dayjs('2019-01-25').format('DD/MM/YYYY') // '25/01/2019' ### Localized formats Because preferred formatting differs based on locale, there are a few localized format tokens that can be used based on its locale. -@>LocalizedFormat +@>localizedFormat ```javascript -dayjs.extend(LocalizedFormat) +dayjs.extend(localizedFormat) dayjs().format('L LT') ```