Skip to content

Commit 1827dd0

Browse files
Fix indendation.
1 parent eef3b13 commit 1827dd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/ROOT/pages/queries/composed-queries/conditional-queries.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ For example, it cannot immediately succeed a `MATCH` clause.
133133
----
134134
MATCH (n)-[:WORKS_FOR]->(m:Person)
135135
WHEN m IS NULL THEN {
136-
MERGE (n)-[:WORKS_FOR]->(f: Person {name: 'Peter', age: 36})
136+
MERGE (n)-[:WORKS_FOR]->(f: Person {name: 'Peter', age: 36})
137137
}
138138
RETURN n.name AS employees,
139139
m.name AS manager,

0 commit comments

Comments
 (0)