Update with.md (#140)

diff --git a/docs/clauses/with.md b/docs/clauses/with.md
index 1ed81da..202ddee 100644
--- a/docs/clauses/with.md
+++ b/docs/clauses/with.md
@@ -19,7 +19,7 @@
 FROM cypher('graph_name', $$

 	MATCH (david {name: 'David'})-[]-(otherPerson)-[]->()

 	WITH otherPerson, count(*) AS foaf

-	WHERE foaf > 1RETURN otherPerson.name

+	WHERE foaf > 1

 	RETURN otherPerson.name

 $$) as (name agtype);

 ```