Skip to content

Commit 1c6f573

Browse files
Fix spatial types docs (#851)
* Removed extra line break interfering with docs output. * Remove weird underscores Co-authored-by: Robsdedude <[email protected]>
1 parent 2e09174 commit 1c6f573

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

neo4j/_spatial/__init__.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818

1919
"""
20-
This module defines _spatial data types.
20+
This module defines spatial data types.
2121
"""
2222

2323
from __future__ import annotations
@@ -32,7 +32,7 @@
3232

3333

3434
class Point(t.Tuple[float, ...]):
35-
"""Base-class for _spatial data.
35+
"""Base-class for spatial data.
3636
3737
A point within a geometric space. This type is generally used via its
3838
subclasses and should not be instantiated directly unless there is no
@@ -44,10 +44,9 @@ class Point(t.Tuple[float, ...]):
4444
:type iterable: Iterable[float]
4545
"""
4646

47-
#: The SRID (_spatial reference identifier) of the _spatial data.
48-
#: A number that identifies the coordinate system the _spatial type is to be
49-
#: interpreted in.
50-
47+
#: The SRID (spatial reference identifier) of the spatial data.
48+
#: A number that identifies the coordinate system the spatial type is to
49+
#: be interpreted in.
5150
srid: t.Optional[int]
5251

5352
@property

0 commit comments

Comments
 (0)