We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54d8110 commit 8acff42Copy full SHA for 8acff42
docs/source/api.rst
@@ -1130,7 +1130,7 @@ Examples
1130
1131
from neo4j.spatial import CartesianPoint
1132
1133
- point = CartesianPoint((1.23, 4.56)
+ point = CartesianPoint((1.23, 4.56))
1134
print(point.x, point.y, point.srid)
1135
# 1.23 4.56 7203
1136
@@ -1139,7 +1139,7 @@ Examples
1139
1140
1141
1142
- point = CartesianPoint((1.23, 4.56, 7.89)
+ point = CartesianPoint((1.23, 4.56, 7.89))
1143
print(point.x, point.y, point.z, point.srid)
1144
# 1.23 4.56 7.8 9157
1145
0 commit comments