Fixed British spelling of 'customize' and 'behavior' in Manager.get_query_set() docstring

git-svn-id: http://code.djangoproject.com/svn/django/trunk@5823 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2007-08-06 20:27:04 +00:00
parent 16cf24393f
commit 3ed4997611
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ class Manager(object):
def get_query_set(self):
"""Returns a new QuerySet object. Subclasses can override this method
to easily customise the behaviour of the Manager.
to easily customize the behavior of the Manager.
"""
return QuerySet(self.model)