Skip to content

Commit a5c9fd1

Browse files
authored
Fixed typo
1 parent d4b2690 commit a5c9fd1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

RShiny/lessons/02_inputs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -358,12 +358,12 @@ Additional arguments that you might want to use with `dateInput()` are:
358358

359359
| Argument | Description | Example |
360360
|----------|-------------|-----------|
361-
| value | Allows you to set the default day to open the calendar on. If not set, then it will default to the current day in yyyy-mm-dd format | value = "2024-07-24"|
361+
| value | Allows you to set the default day to open the calendar on. If not set, then it will default to the current day in yyyy-mm-dd format | `value = "2024-07-24"`|
362362
| min | Allows you to set the _earliest_ date that can be selected | `min = "2024-07-20"` |
363363
| max | Allows you to set the _latest_ date that can be selected | `max = "2024-07-28"` |
364364
| weekstart | Allows you to select which day of the week the calendar should start on with Sunday being 0 and incrementing to Saturday being 6 | `weekstart = 1` |
365365
| language | Allows you to set the language for the calendar | `language = "de"` |
366-
| daysofweekdisabled | Allows you to make certain days of the week unavailible for selection with Sunday being 0 and incrementing to Saturday being 6. You can also make a vector of values to block out multiple days of the week. | `daysofweekdisabled = c(0,6)` |
366+
| daysofweekdisabled | Allows you to make certain days of the week unavailable for selection with Sunday being 0 and incrementing to Saturday being 6. You can also make a vector of values to block out multiple days of the week. | `daysofweekdisabled = c(0,6)` |
367367

368368
### Date Range
369369

0 commit comments

Comments
 (0)