[1.8.x] Fixed a few docstring typos.

Backport of f8d20da047 from master
This commit is contained in:
Noenglish Professorbut 2016-03-11 17:17:01 -08:00 committed by Tim Graham
parent c7764ca3a0
commit 1a1a8235df
3 changed files with 3 additions and 3 deletions

View File

@ -208,7 +208,7 @@ class PostGISOperations(BaseSpatialOperations, DatabaseOperations):
def convert_geom(self, hex, geo_field):
"""
Converts the geometry returned from PostGIS aggretates.
Converts the geometry returned from PostGIS aggregates.
"""
if hex:
return Geometry(hex, srid=geo_field.srid)

View File

@ -145,7 +145,7 @@ class SpatiaLiteOperations(BaseSpatialOperations, DatabaseOperations):
def geo_db_type(self, f):
"""
Returns None because geometry columnas are added via the
Returns None because geometry columns are added via the
`AddGeometryColumn` stored procedure on SpatiaLite.
"""
return None

View File

@ -36,7 +36,7 @@ class MigrationAutodetector(object):
def changes(self, graph, trim_to_apps=None, convert_apps=None, migration_name=None):
"""
Main entry point to produce a list of appliable changes.
Main entry point to produce a list of applicable changes.
Takes a graph to base names on and an optional set of apps
to try and restrict to (restriction is not guaranteed)
"""