From 09d61446d8119d1f0e1a8209b8da8317db37e76c Mon Sep 17 00:00:00 2001 From: Shogo Hida Date: Tue, 11 Oct 2022 19:26:19 +0900 Subject: [PATCH] =?UTF-8?q?DOC:=20change=20geometries=E2=80=99s=20to=20geo?= =?UTF-8?q?metry's=20(#2586)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: shogohida --- doc/source/docs/user_guide/geometric_manipulations.rst | 2 +- geopandas/base.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/docs/user_guide/geometric_manipulations.rst b/doc/source/docs/user_guide/geometric_manipulations.rst index d29eeb6..614251c 100644 --- a/doc/source/docs/user_guide/geometric_manipulations.rst +++ b/doc/source/docs/user_guide/geometric_manipulations.rst @@ -18,7 +18,7 @@ Constructive Methods .. attribute:: GeoSeries.boundary Returns a :class:`~geopandas.GeoSeries` of lower dimensional objects representing - each geometries's set-theoretic `boundary`. + each geometry's set-theoretic `boundary`. .. attribute:: GeoSeries.centroid diff --git a/geopandas/base.py b/geopandas/base.py index b5a4450..437a611 100644 --- a/geopandas/base.py +++ b/geopandas/base.py @@ -424,7 +424,7 @@ GeometryCollection @property def boundary(self): """Returns a ``GeoSeries`` of lower dimensional objects representing - each geometries's set-theoretic `boundary`. + each geometry's set-theoretic `boundary`. Examples --------