From 0a567aa4d72e98f5b6ef6013faba8642d035d50d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 4 Feb 2026 13:24:45 +0000 Subject: [PATCH] Fix typo: day -> doy (day of the year) Co-authored-by: jstirnaman <212227+jstirnaman@users.noreply.github.com> --- content/shared/sql-reference/functions/time-and-date.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/shared/sql-reference/functions/time-and-date.md b/content/shared/sql-reference/functions/time-and-date.md index d116e112f..965870804 100644 --- a/content/shared/sql-reference/functions/time-and-date.md +++ b/content/shared/sql-reference/functions/time-and-date.md @@ -794,7 +794,7 @@ date_part(part, expression) - microsecond - nanosecond - dow _(day of the week)_ - - day _(day of the year)_ + - doy _(day of the year)_ - **expression**: Time expression to operate on. Can be a constant, column, or function. @@ -860,7 +860,7 @@ extract(field FROM source) - microsecond - nanosecond - dow _(day of the week)_ - - day _(day of the year)_ + - doy _(day of the year)_ - **source**: Source time expression to operate on. Can be a constant, column, or function.