diff --git a/.wordlist.txt b/.wordlist.txt index 2259b77..fd5a4fa 100644 --- a/.wordlist.txt +++ b/.wordlist.txt @@ -763,4 +763,3 @@ ORM orm OGM ogm -lowercasing diff --git a/udfs/flex/date/format.md b/udfs/flex/date/format.md index 63866d3..5c30cd1 100644 --- a/udfs/flex/date/format.md +++ b/udfs/flex/date/format.md @@ -26,6 +26,7 @@ flex.date.format(datetime, pattern, timezone) | `timezone` | string | No | Timezone offset like `"+02:00"` or `"-05:00"` | ### Supported Pattern Tokens + | Token | Description | Example | |-------|-------------|---------| | `YYYY` | 4-digit year | `2024` | @@ -35,7 +36,7 @@ flex.date.format(datetime, pattern, timezone) | `mm` | 2-digit minute (00-59) | `30` | | `ss` | 2-digit second (00-59) | `45` | | `SSS` | 3-digit milliseconds | `123` | -| `[Z]` | Literal 'Z' character | `Z` | +| `[Z]` | Literal `Z` character | `Z` | ## Returns **Type:** string diff --git a/udfs/flex/date/truncate.md b/udfs/flex/date/truncate.md index aa72b02..30b7f8d 100644 --- a/udfs/flex/date/truncate.md +++ b/udfs/flex/date/truncate.md @@ -25,6 +25,7 @@ flex.date.truncate(datetime, unit) | `unit` | string | Yes | The unit to truncate to | ### Supported Units + | Unit | Description | Truncates To | |------|-------------|--------------| | `'minute'` | Truncate to start of minute | Sets seconds and milliseconds to 0 |