From 052f9cbe902d833395308a5253dba88faee25b5e Mon Sep 17 00:00:00 2001 From: Brendon Muir Date: Thu, 8 Aug 2024 11:55:18 +1200 Subject: [PATCH] Update formatRange.md Fix incorrect option key. It should be isEndExclusive. Fixes [#6203](https://github.com/fullcalendar/fullcalendar/issues/6203) --- _docs-v6/date-library/formatRange.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_docs-v6/date-library/formatRange.md b/_docs-v6/date-library/formatRange.md index d74aa547..09bff534 100644 --- a/_docs-v6/date-library/formatRange.md +++ b/_docs-v6/date-library/formatRange.md @@ -13,7 +13,7 @@ FullCalendar.formatRange( *start*, *end*, *settings* ) `settings` is an object that holds any of the [date format config](date-formatting) options. It also accepts the following additional properties: - `separator` — what will be inserted between the two dates. a `' - '` by default -- `isExclusive` — if `true`, the given end date will be considered the *exclusive end* of the range, meaning date just before the `end` will be rendered instead. Useful if you need to format an exclusive-end whole-day range. +- `isEndExclusive` — if `true`, the given end date will be considered the *exclusive end* of the range, meaning date just before the `end` will be rendered instead. Useful if you need to format an exclusive-end whole-day range. - `locale` — the name of a [locale](locale) like `'es'` - `timeZone` — the name of a [time zone](timeZone). Either `'local'`, `'UTC'`, or a named time zone