From a169d7fa469ab4be253962ce083c9579c8d88492 Mon Sep 17 00:00:00 2001 From: nikola-sh Date: Wed, 13 Nov 2024 23:57:22 +0300 Subject: [PATCH] Fix chrono formatting syntax doc (#4235) --- doc/syntax.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/syntax.md b/doc/syntax.md index 1a44e867..b6989be0 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