From 186abd93c4e6acb0aa0e959d0d378919cc4b9e06 Mon Sep 17 00:00:00 2001 From: Dmitriy Shishkov Date: Fri, 17 Sep 2021 13:44:54 +0300 Subject: [PATCH] Fixed naming error in readme --- Readme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Readme.md b/Readme.md index 26346cf..721d48a 100644 --- a/Readme.md +++ b/Readme.md @@ -47,7 +47,7 @@ const events = [ `locale` is an object containing arrays of strings. `monthNames` and `weekdaysNames` are currently supported. Strings in array should be in lowercase. For example: ```javascript const locale = { - monthNames: [ + weekdaysNames: [ "sunday", "monday", "tuesday", @@ -56,7 +56,7 @@ const locale = { "friday", "saturday", ], - weekdaysNames: [ + monthNames: [ "january", "february", "march", @@ -81,4 +81,4 @@ enum Viewers { MonthViewer, // Month view DayViewer, // Single day view } -``` \ No newline at end of file +```