Skip to content

Commit 5d6c2dd

Browse files
cleanup
1 parent 8b2dd89 commit 5d6c2dd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/ROOT/pages/clauses/let.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,11 +122,11 @@ RETURN supplier, product
122122

123123
| "TechCorp" | "Laptop"
124124
| "TechCorp" | "Phone"
125+
| "TechCorp" | "Headphones"
125126
| "Foodies Inc." | "Chocolate"
126127
| "Foodies Inc." | "Coffee"
127128

128129
2+d|Rows: 4
129-
130130
|===
131131

132132
[[let-and-with-differences]]
@@ -200,7 +200,7 @@ The fact that `LET` does not drop variables means that it can be used to chain e
200200
.Chaining expressions: comparing `LET` and `WITH`
201201
=====
202202
203-
The below query shows that variables bound by a `LET` clause be referenced in subsequent `LET` clauses without being explicitly carried over.
203+
The below query shows that variables bound by a `LET` clause be referenced by subsequent clauses without being explicitly carried over.
204204
Specifically, the variable `isExpensive` is created in the first `LET` clause and referenced again in the subsequent clauses.
205205
Note also that the variable `p`, bound in the `MATCH` clause, is available in the final `RETURN` clause despite not being referenced in any of `LET` clauses.
206206
@@ -309,7 +309,7 @@ RETURN fullName, totalSpent
309309
[[advanced-examples]]
310310
== Advanced examples
311311

312-
The following scenarios demonstrates how `LET`, and its ability to chain expressions, can be used in more advanced queries:
312+
The following examples demonstrates how `LET`, and its ability to chain expressions, can be used in more advanced queries:
313313

314314
.Scenario 1: Supplier notification on customer purchases and discounts
315315
=====

0 commit comments

Comments
 (0)