Skip to content

Commit

Permalink
[chore] docs: fix nanosecond value range (#37309)
Browse files Browse the repository at this point in the history
  • Loading branch information
gjasny authored Jan 19, 2025
1 parent cded871 commit 01104dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/stanza/docs/types/timestamp.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ The `gotime` layout type uses Golang's native time parsing capabilities. Golang
| `%S` | `05` | Second as a zero-padded decimal number (00, 01, ..., 59) |
| `%L` | `999` | Millisecond as a decimal number, zero-padded on the left (000, 001, ..., 999) |
| `%f` | `999999` | Microsecond as a decimal number, zero-padded on the left (000000, ..., 999999) |
| `%s` | `99999999` | Nanosecond as a decimal number, zero-padded on the left (000000, ..., 999999) |
| `%s` | `99999999` | Nanosecond as a decimal number, zero-padded on the left (000000000, ..., 999999999) |
| `%Z` | `MST` | Timezone name or abbreviation or empty (UTC, EST, CST) |
| `%z` | `Z0700` | UTC offset in the form ±HHMM[SS[.ffffff]] or empty(+0000, -0400) |
| `%i` | `-07` | UTC offset in the form ±HH or empty(+00, -04) |
Expand Down

0 comments on commit 01104dd

Please sign in to comment.