Skip to content

Commit a70e7f5

Browse files
committed
remove LIMIT 1, as per review
1 parent c5979ec commit a70e7f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/ROOT/pages/syntax/keywords.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ For instance in the following, `true` could be the variable `true` or the Boolea
1919
[source, cypher, role=test-result-skip]
2020
----
2121
WITH 123 AS true
22-
RETURN true AS x LIMIT 1
22+
RETURN true AS x
2323
----
2424

2525
.Result
@@ -38,7 +38,7 @@ If any keyword is quoted in backticks (```), such as `++`true`++`, it is always
3838
[source, cypher, role=test-result-skip]
3939
----
4040
WITH 123 AS true
41-
RETURN `true` AS x LIMIT 1
41+
RETURN `true` AS x
4242
----
4343

4444
.Result

0 commit comments

Comments
 (0)