Skip to content

Commit

Permalink
Update formatRange.md
Browse files Browse the repository at this point in the history
Fix incorrect option key. It should be isEndExclusive.

Fixes [#6203](fullcalendar/fullcalendar#6203)
  • Loading branch information
brendon authored Aug 7, 2024
1 parent 1a94851 commit 052f9cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _docs-v6/date-library/formatRange.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 052f9cb

Please sign in to comment.