From 117f90dea53b0dd121eb14f07bcbadb295665ff7 Mon Sep 17 00:00:00 2001 From: Alec Kerrigan Date: Wed, 6 Aug 2025 14:24:20 -0400 Subject: [PATCH] Fixed typo in django/contrib/gis/geos/geometry.py. --- django/contrib/gis/geos/geometry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/contrib/gis/geos/geometry.py b/django/contrib/gis/geos/geometry.py index 48658c4218..cbbecd47b1 100644 --- a/django/contrib/gis/geos/geometry.py +++ b/django/contrib/gis/geos/geometry.py @@ -215,7 +215,7 @@ class GEOSGeometryBase(GEOSBase): @property def num_points(self): - "Return the number points, or coordinates, in the Geometry." + "Return the number of points, or coordinates, in the Geometry." return self.num_coords @property