From 000e35a145ee74c6ebbb1c8f3e50993eee82d195 Mon Sep 17 00:00:00 2001 From: Alexandre Fauquette Date: Mon, 2 May 2022 13:09:21 +0200 Subject: [PATCH] fix typo in doc --- README.md | 2 +- packages/core/IUtils.d.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 50ac3857..9e08c1d3 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ export interface DateIOFormats { month: TLibFormatToken; /** Short month format string @example "Jan" */ monthShort: TLibFormatToken; - /** Short month format string @example "January 2018" */ + /** Month with year format string @example "January 2018" */ monthAndYear: TLibFormatToken; /** Month with date format string @example "January 1" */ monthAndDate: TLibFormatToken; diff --git a/packages/core/IUtils.d.ts b/packages/core/IUtils.d.ts index e0b69cd5..7c5c9907 100644 --- a/packages/core/IUtils.d.ts +++ b/packages/core/IUtils.d.ts @@ -15,7 +15,7 @@ export interface DateIOFormats { month: TLibFormatToken; /** Short month format string @example "Jan" */ monthShort: TLibFormatToken; - /** Short month format string @example "January 2018" */ + /** Month with year format string @example "January 2018" */ monthAndYear: TLibFormatToken; /** Month with date format string @example "January 1" */ monthAndDate: TLibFormatToken;