Skip to content

Commit 7307a60

Browse files
hvubrsill-neo4j
andauthored
review suggestions
Co-authored-by: Richard Sill <[email protected]>
1 parent 300d3f9 commit 7307a60

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

modules/ROOT/pages/syntax/keywords.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
[[cypher-keywords]]
44
= Keywords
55

6-
Keywords are words that have a special meaning in Cypher.
6+
Keywords are words with a predefined meaning in Cypher.
77

8-
The keywords are not recommended to be used as identifiers in the following contexts:
8+
Keywords are not recommended to be used as identifiers in the following contexts:
99

1010
* Variables
1111
* Labels
1212
* Relationship types
1313

14-
If a snippet of Cypher can validly be a keyword as well as an unquoted identifier, it is always interpreted as a keyword.
14+
If a snippet of Cypher can both be a keyword and an unquoted identifier, it is interpreted as a keyword.
1515

1616
For instance in the following, `true` could be the variable `true` or the Boolean literal value `true`. Since `true` is a keyword, the query returns a single Boolean `true` value.
1717

@@ -54,9 +54,9 @@ RETURN `true` AS x
5454

5555
== List of keywords
5656

57-
The following lists of all keywords in Cypher.
57+
The following lists all keywords in Cypher.
5858

59-
Note that with future functionality, Cypher may gain additional keywords not yet in the list.
59+
Note that with future functionality, Cypher may be extended with additional keywords.
6060

6161
=== A
6262
`ACCESS`

modules/ROOT/pages/syntax/variables.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ For more information see xref::clauses/with.adoc[WITH].
3131
[IMPORTANT]
3232
.Variables imported into a `CALL` subquery are visible in the whole subquery
3333
====
34-
Even if the subquery is a multiple query parts are chained together using `WITH`, variables imported from the outer query do not have to be listed in the `WITH` clause to be visible in the next part.
34+
Even if the subquery consists of multiple query parts chained together using `WITH`, variables imported from the outer query do not have to be listed in the `WITH` clause to be visible in the next part.
3535
For more information see xref::subqueries/call-subquery.adoc#variable-scope-clause[The variable scope clause].
3636
====

0 commit comments

Comments
 (0)