Skip to content

Commit

Permalink
remove LIMIT 1, as per review
Browse files Browse the repository at this point in the history
  • Loading branch information
hvub committed Dec 12, 2024
1 parent df08c0c commit 300d3f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/ROOT/pages/syntax/keywords.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ For instance in the following, `true` could be the variable `true` or the Boolea
[source, cypher, role=test-result-skip]
----
WITH 123 AS true
RETURN true AS x LIMIT 1
RETURN true AS x
----

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

.Result
Expand Down

0 comments on commit 300d3f9

Please sign in to comment.