[1.8.x] Fixed typos in code comments.

Backport of 039465a6a7 from master
This commit is contained in:
Adam Taylor 2015-01-20 07:54:12 -07:00 committed by Tim Graham
parent 90d9bf5ba4
commit 45aaced91e
26 changed files with 28 additions and 28 deletions

View file

@ -409,7 +409,7 @@ class BaseDatabaseCreation(object):
queryset = model._default_manager.using(self.connection.alias).order_by(model._meta.pk.name)
for obj in queryset.iterator():
yield obj
# Serialise to a string
# Serialize to a string
out = StringIO()
serializers.serialize("json", get_objects(), indent=None, stream=out)
return out.getvalue()