Swap %d and %e to fix typo, closes #1550

This commit is contained in:
Mine Çetinkaya-Rundel 2023-11-09 09:36:49 -05:00
parent fd39b442f4
commit 35c5af0e09
1 changed files with 2 additions and 2 deletions

View File

@ -108,8 +108,8 @@ Table @tbl-date-formats lists all the options.
| Month | `%m` | Number | 2 |
| | `%b` | Abbreviated name | Feb |
| | `%B` | Full name | February |
| Day | `%d` | Two digits | 02 |
| | `%e` | One or two digits | 2 |
| Day | `%d` | One or two digits | 2 |
| | `%e` | Two digits | 02 |
| Time | `%H` | 24-hour hour | 13 |
| | `%I` | 12-hour hour | 1 |
| | `%p` | AM/PM | pm |