From 35c5af0e09092dcc0179e03b6cfcfe8fcc6d5a16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mine=20=C3=87etinkaya-Rundel?= Date: Thu, 9 Nov 2023 09:36:49 -0500 Subject: [PATCH] Swap %d and %e to fix typo, closes #1550 --- datetimes.qmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/datetimes.qmd b/datetimes.qmd index 533014d..ca6fc63 100644 --- a/datetimes.qmd +++ b/datetimes.qmd @@ -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 |