From 4380ab1eadd8040eff9e590008e453564868acaa Mon Sep 17 00:00:00 2001 From: nikola-sh Date: Tue, 12 Nov 2024 09:21:12 +0300 Subject: [PATCH] Fix chrono formatting syntax doc --- doc/syntax.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/syntax.md b/doc/syntax.md index 1a44e867db7c..b6989be00920 100644 --- a/doc/syntax.md +++ b/doc/syntax.md @@ -706,12 +706,12 @@ The available padding modifiers (*padding_modifier*) are: | Type | Meaning | |-------|-----------------------------------------| -| `'-'` | Pad a numeric result with spaces. | -| `'_'` | Do not pad a numeric result string. | +| `'_'` | Pad a numeric result with spaces. | +| `'-'` | Do not pad a numeric result string. | | `'0'` | Pad a numeric result string with zeros. | These modifiers are only supported for the `'H'`, `'I'`, `'M'`, `'S'`, `'U'`, -`'V'`, `'W'`, `'m'`, `'j'`, `'Y'` presentation types. +`'V'`, `'W'`, `'m'`, `'j'`, `'d'`, `'Y'` presentation types. ## Range Format Specifications