Skip to content

Commit 289ef6e

Browse files
authored
Minor fix in docs exacmple (#665)
1 parent 79f858c commit 289ef6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ Finding nodes.
124124
friends = []
125125
result = tx.run("MATCH (a:Person)-[:KNOWS]->(f) "
126126
"WHERE a.name = $name "
127-
"RETURN f.name AS friend", name=name):
127+
"RETURN f.name AS friend", name=name)
128128
for record in result:
129129
friends.append(record["friend"])
130130
return friends

0 commit comments

Comments
 (0)