diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-04-26 10:18:45 -0700 |
|---|---|---|
| committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-04-26 10:18:45 -0700 |
| commit | 2bcb8bfc8de5cd57ebb64b326cd7609aa0d8c1c7 (patch) | |
| tree | 6c0dc4b5f0d4dbcae6c181efc2b346799ac5caf3 /django/db/models/query.py | |
| parent | 8b5b199e20ad2d8d3e91873ce0cd5d3035e05ece (diff) | |
Fix many many typos in comments throughout the codebase
Diffstat (limited to 'django/db/models/query.py')
| -rw-r--r-- | django/db/models/query.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/django/db/models/query.py b/django/db/models/query.py index a555e98c1a..a1ff38e784 100644 --- a/django/db/models/query.py +++ b/django/db/models/query.py @@ -757,8 +757,8 @@ class QuerySet(object): evaluated. When prefetch_related() is called more than once, the list of lookups to - prefetch is appended to. If prefetch_related(None) is called, the - the list is cleared. + prefetch is appended to. If prefetch_related(None) is called, the list + is cleared. """ clone = self._clone() if lookups == (None,): @@ -869,7 +869,7 @@ class QuerySet(object): def using(self, alias): """ - Selects which database this QuerySet should excecute its query against. + Selects which database this QuerySet should execute its query against. """ clone = self._clone() clone._db = alias @@ -1599,7 +1599,7 @@ class RawQuerySet(object): def using(self, alias): """ - Selects which database this Raw QuerySet should excecute it's query against. + Selects which database this Raw QuerySet should execute its query against. """ return RawQuerySet(self.raw_query, model=self.model, query=self.query.clone(using=alias), @@ -1621,7 +1621,7 @@ class RawQuerySet(object): index = self._columns.index(query_name) self._columns[index] = model_name except ValueError: - # Ignore translations for non-existant column names + # Ignore translations for non-existent column names pass return self._columns |
