Skip to content

Commit 930362a

Browse files
more fixes
1 parent aa12e5f commit 930362a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

modules/ROOT/pages/expressions/list-expressions.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ The subscript operator, `[]`, can be used to access specific elements in a `LIST
4444
[source, cypher]
4545
----
4646
WITH [1, 2, 3, 4] AS list
47-
RETURN list[0] AS firstElement
48-
list[2] AS thirdElement
47+
RETURN list[0] AS firstElement,
48+
list[2] AS thirdElement,
4949
list[-1] AS finalElement
5050
----
5151

modules/ROOT/pages/expressions/predicates/comparison-operators.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ RETURN n.name AS name, n.email AS email
199199
| "Alice" | "[email protected]"
200200
| "Cecil" | "[email protected]"
201201
| "Daniel" | "[email protected]"
202-
| "Eskil" | "eskil@company.se"
202+
| "Eskil" | "eskil@company.com"
203203
204204
2+d|Rows: 4
205205
|===

modules/ROOT/pages/expressions/string-operators.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ RETURN 'Hello' || ', ' || 'World' AS result
106106
.Adding prefix, suffix, and separators in `STRING` concatenation
107107
[source, cypher]
108108
----
109-
RETURN 'My favorite fruits are: ' || 'apples' || ', ' || 'bananas' || ', and' || 'oranges' || '.' AS result
109+
RETURN 'My favorite fruits are: ' || 'apples' || ', ' || 'bananas' || ', and ' || 'oranges' || '.' AS result
110110
----
111111

112112
.Result

0 commit comments

Comments
 (0)