Skip to content

Commit 8acff42

Browse files
authored
Fix typo in api docs. (#741)
Amend missing closing parentheses.
1 parent 54d8110 commit 8acff42

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/source/api.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1130,7 +1130,7 @@ Examples
11301130
11311131
from neo4j.spatial import CartesianPoint
11321132
1133-
point = CartesianPoint((1.23, 4.56)
1133+
point = CartesianPoint((1.23, 4.56))
11341134
print(point.x, point.y, point.srid)
11351135
# 1.23 4.56 7203
11361136
@@ -1139,7 +1139,7 @@ Examples
11391139
11401140
from neo4j.spatial import CartesianPoint
11411141
1142-
point = CartesianPoint((1.23, 4.56, 7.89)
1142+
point = CartesianPoint((1.23, 4.56, 7.89))
11431143
print(point.x, point.y, point.z, point.srid)
11441144
# 1.23 4.56 7.8 9157
11451145

0 commit comments

Comments
 (0)