From 6ad43f19d2d6a81a3ceceb5471b09c8d3e3e44ff Mon Sep 17 00:00:00 2001 From: Rouven Bauer Date: Fri, 3 Jun 2022 08:04:19 +0200 Subject: [PATCH] Fix typo in api docs. Amend missing closing parentheses. --- docs/source/types/spatial.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/types/spatial.rst b/docs/source/types/spatial.rst index dfd940905..afc188471 100644 --- a/docs/source/types/spatial.rst +++ b/docs/source/types/spatial.rst @@ -46,7 +46,7 @@ Examples from neo4j.spatial import CartesianPoint - point = CartesianPoint((1.23, 4.56) + point = CartesianPoint((1.23, 4.56)) print(point.x, point.y, point.srid) # 1.23 4.56 7203 @@ -55,7 +55,7 @@ Examples from neo4j.spatial import CartesianPoint - point = CartesianPoint((1.23, 4.56, 7.89) + point = CartesianPoint((1.23, 4.56, 7.89)) print(point.x, point.y, point.z, point.srid) # 1.23 4.56 7.8 9157