From 2590bcb7db1c60997725ff39f858ec2f3caf8706 Mon Sep 17 00:00:00 2001 From: Marin Petricevic <marin.petricevic@memgraph.io> Date: Tue, 10 Jul 2018 13:57:39 +0200 Subject: [PATCH] Fix two typos in user docs cypher guide Reviewers: ipaljak Reviewed By: ipaljak Subscribers: buda Differential Revision: https://phabricator.memgraph.io/D1486 --- docs/user_technical/open-cypher.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user_technical/open-cypher.md b/docs/user_technical/open-cypher.md index 249c7db0c..724a43e69 100644 --- a/docs/user_technical/open-cypher.md +++ b/docs/user_technical/open-cypher.md @@ -323,7 +323,7 @@ Labels and properties can be set during creation using the same syntax as in property: ```opencypher -CREATE (node :Label {property: "my property value"} +CREATE (node :Label {property: "my property value"}) ``` Additional information on `CREATE` is @@ -530,7 +530,7 @@ value. If `True`, matching continues, otherwise the path is discarded. The previous example can be written using the `all` function: ```opencypher -MATCH (n)-[edge_list *]-(m) WHERE all(edge IN r WHERE 0 < edge.x < 10) +MATCH (n)-[edge_list *]-(m) WHERE all(edge IN edge_list WHERE 0 < edge.x < 10) ``` However, filtering using a lambda function is more efficient because paths