Skip to content

Commit 9406faf

Browse files
update
1 parent 3abb172 commit 9406faf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

modules/ROOT/pages/styleguide.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ RETURN 'Cypher\'s a nice language', "Mats' quote: \"statement\""
472472
RETURN "Cypher's a nice language", 'Mats\' quote: "statement"'
473473
----
474474

475-
* Avoid having to use backticks to quote characters and keywords.
475+
* Avoid using characters and keywords that require the input to be quoted with backticks.
476476

477477
.Bad
478478
[source, cypher]

modules/ROOT/pages/syntax/naming.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Within a name quoted by backticks, the following character representations are a
3434

3535
[options="header", cols=">1,<2"]
3636
|===
37-
|Q sequence|Character
37+
| Character representation | Description
3838
|````| Backtick
3939
|`\uxxxx`| Unicode UTF-16 code point (4 hex digits must follow the `\u`)
4040
|===

modules/ROOT/pages/syntax/reserved.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The reserved keywords are not permitted to be used as identifiers in the followi
1616
* Function names
1717
* Parameters
1818

19-
If any reserved keyword is quoted in backticks (```), such as `++`AND`++`, it would become a valid identifier in the above contexts.
19+
If any reserved keyword is quoted in backticks (```), such as `++`AND`++`, it would become a valid identifier in the above contexts; however, this approach is not recommended.
2020

2121
== Clauses
2222

0 commit comments

Comments
 (0)