Fix chrono formatting syntax doc (#4235)

This commit is contained in:
nikola-sh 2024-11-13 23:57:22 +03:00 committed by GitHub
parent a6c45dfea8
commit a169d7fa46
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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