Skip to content

Commit 931d724

Browse files
authored
Changes misleading example (#525)
1 parent e9f3f28 commit 931d724

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

book/variables_and_subexpressions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ The `where size > 10kb` is a command with two parts: the command name [`where`](
8888
```
8989
> ls | where $it.size > 10kb
9090
> ls | where ($it.size > 10kb)
91-
> ls | where {|$it| $it.size > 10kb }
91+
> ls | where {|$x| $x.size > 10kb }
9292
```
9393

9494
For short-hand syntax to work, the column name must appear on the left-hand side of the operation (like `size` in `size > 10kb`).

0 commit comments

Comments
 (0)