Skip to content

Commit 6fe4ea7

Browse files
authored
Fix typo in api docs. (#740)
Amend missing closing parentheses.
1 parent 4f5c900 commit 6fe4ea7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/source/types/spatial.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Examples
4646
4747
from neo4j.spatial import CartesianPoint
4848
49-
point = CartesianPoint((1.23, 4.56)
49+
point = CartesianPoint((1.23, 4.56))
5050
print(point.x, point.y, point.srid)
5151
# 1.23 4.56 7203
5252
@@ -55,7 +55,7 @@ Examples
5555
5656
from neo4j.spatial import CartesianPoint
5757
58-
point = CartesianPoint((1.23, 4.56, 7.89)
58+
point = CartesianPoint((1.23, 4.56, 7.89))
5959
print(point.x, point.y, point.z, point.srid)
6060
# 1.23 4.56 7.8 9157
6161

0 commit comments

Comments
 (0)