Skip to content

Commit 2af1484

Browse files
fix mistake
1 parent 293981a commit 2af1484

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

modules/ROOT/pages/expressions/predicates/comparison-operators.adoc

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -157,11 +157,7 @@ RETURN n.name AS name, n.age AS age
157157
[source, cypher]
158158
----
159159
MATCH (n:Person)
160-
<<<<<<< HEAD
161-
WHERE n.age => 39
162-
=======
163-
WHERE n.age >= 39
164-
>>>>>>> cypher-25
160+
WHERE n.age >= 39
165161
RETURN n.name AS name, n.age AS age
166162
----
167163
// end::expressions_predicates_comparison_operators_greater_than_or_equal[]

0 commit comments

Comments
 (0)