Skip to content

Commit cd8d99c

Browse files
authored
Minor fix in docs exacmple (#664)
1 parent 0f2c40b commit cd8d99c

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
@@ -126,7 +126,7 @@ Finding nodes.
126126
friends = []
127127
result = tx.run("MATCH (a:Person)-[:KNOWS]->(f) "
128128
"WHERE a.name = $name "
129-
"RETURN f.name AS friend", name=name):
129+
"RETURN f.name AS friend", name=name)
130130
for record in result:
131131
friends.append(record["friend"])
132132
return friends

0 commit comments

Comments
 (0)