Skip to content

Commit ce36561

Browse files
authored
docs: fix grammar in join transform reference (#5998)
1 parent 9f10adf commit ce36561

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • web/book/src/reference/stdlib/transforms

web/book/src/reference/stdlib/transforms/join.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ join side:{inner|left|right|full} rel (condition)
1515
Theoretically, `join` will produce a cartesian product of the two input
1616
relations and then filter the result by the condition. It supports two
1717
additional features:
18-
- _Names [`this` & `that`](../../syntax/keywords.md#this--that)_: Along name
19-
`this`, which refers to the first input relation, `condition` can use name
20-
`that`, which refers to the second input relation.
18+
- _Names [`this` & `that`](../../syntax/keywords.md#this--that)_: Alongside
19+
name `this`, which refers to the first input relation, `condition` can use
20+
name `that`, which refers to the second input relation.
2121
- _Self equality operator_: If the condition is an equality comparison between
2222
two columns with the same name (i.e. `(this.col == that.col)`), it can be
2323
expressed with only `(==col)`.

0 commit comments

Comments
 (0)