Skip to content

Commit 1d44e99

Browse files
authored
tweak: Fix Readme alignment (#2796)
1 parent 59b8ce9 commit 1d44e99

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ since it compiles to SQL.
2626
PRQL can be as simple as:
2727

2828
```elm
29-
from employees
30-
filter country == "USA" # Each line transforms the previous result
29+
from tracks
30+
filter artist == "Bob Marley" # Each line transforms the previous result
3131
aggregate { # `aggregate` reduces each column to a value
32-
max salary,
33-
min salary,
34-
count s"*", # Trailing commas are allowed
32+
plays = sum plays,
33+
longest = max length,
34+
shortest = min length, # Trailing commas are allowed
3535
}
3636
```
3737

0 commit comments

Comments
 (0)