Skip to content

Commit eba1435

Browse files
committed
make the spell check happy
1 parent 135ad85 commit eba1435

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/use-cases/time-series/basic-operations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ ORDER BY hour ASC WITH FILL STEP toIntervalHour(1);
220220
Sometimes, we don’t want to deal with the start of intervals (like the start of the day or an hour) but window intervals.
221221
Let’s say we want to understand the total hits for a window, not based on days but on a 24-hour period offset from 6 pm.
222222

223-
We can use the [`date_diff()`](/docs/sql-reference/functions/date-time-functions#date_diff) function to calculate the difference between a basepoint time and each record’s time.
223+
We can use the [`date_diff()`](/docs/sql-reference/functions/date-time-functions#date_diff) function to calculate the difference between a reference time and each record’s time.
224224
In this case, the `day` column will represent the difference in days (e.g., 1 day ago, 2 days ago, etc.):
225225

226226
```sql

0 commit comments

Comments
 (0)