Skip to content

Commit a0110f2

Browse files
authored
Update query-language.md
1 parent 9222f83 commit a0110f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api/public-api/query-language.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -553,5 +553,5 @@ event('Shoes Bought').within(30 days).first(property('spend'))
553553
This example calculates the most frequent spend value for each user, based on all `Shoes Bought` events performed within the last 30 days. It only considers spend values that have a minimum frequency of `2`:
554554

555555
```sql
556-
('Shoes Bought').within(30 days).mode(property('spend'), 2)
556+
event('Shoes Bought').within(30 days).mode(property('spend'), 2)
557557
```

0 commit comments

Comments
 (0)