Skip to content

Commit bdf6631

Browse files
committed
Fixed quick example code in docs
1 parent 698760b commit bdf6631

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
@@ -20,7 +20,7 @@ Quick Example
2020
for record in tx.run("MATCH (a:Person)-[:KNOWS]->(f) "
2121
"WHERE a.name = {name} "
2222
"RETURN f.name", name=name):
23-
print(record["f.name"])
23+
print(record["f.name"])
2424
2525
with driver.session() as session:
2626
session.read_transaction(print_friends_of, "Alice")

0 commit comments

Comments
 (0)