summaryrefslogtreecommitdiff
path: root/django/contrib/gis/db/models/query.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/contrib/gis/db/models/query.py')
-rw-r--r--django/contrib/gis/db/models/query.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/contrib/gis/db/models/query.py b/django/contrib/gis/db/models/query.py
index b368f425be..3d0c2beec7 100644
--- a/django/contrib/gis/db/models/query.py
+++ b/django/contrib/gis/db/models/query.py
@@ -73,7 +73,7 @@ class GeoQuerySet(QuerySet):
def collect(self, **kwargs):
"""
Performs an aggregate collect operation on the given geometry field.
- This is analagous to a union operation, but much faster because
+ This is analogous to a union operation, but much faster because
boundaries are not dissolved.
"""
return self._spatial_aggregate(aggregates.Collect, **kwargs)
@@ -137,7 +137,7 @@ class GeoQuerySet(QuerySet):
def geojson(self, precision=8, crs=False, bbox=False, **kwargs):
"""
- Returns a GeoJSON representation of the geomtry field in a `geojson`
+ Returns a GeoJSON representation of the geometry field in a `geojson`
attribute on each element of the GeoQuerySet.
The `crs` and `bbox` keywords may be set to True if the user wants