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 4f5c900 commit 6fe4ea7Copy full SHA for 6fe4ea7
docs/source/types/spatial.rst
@@ -46,7 +46,7 @@ Examples
46
47
from neo4j.spatial import CartesianPoint
48
49
- point = CartesianPoint((1.23, 4.56)
+ point = CartesianPoint((1.23, 4.56))
50
print(point.x, point.y, point.srid)
51
# 1.23 4.56 7203
52
@@ -55,7 +55,7 @@ Examples
55
56
57
58
- point = CartesianPoint((1.23, 4.56, 7.89)
+ point = CartesianPoint((1.23, 4.56, 7.89))
59
print(point.x, point.y, point.z, point.srid)
60
# 1.23 4.56 7.8 9157
61
0 commit comments