diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2011-04-11 20:27:53 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2011-04-11 20:27:53 +0000 |
| commit | d546179c71dc19692cd263aef46f753d312be546 (patch) | |
| tree | 3c025f6d56d7a72d063f59898b08a087f6757204 | |
| parent | fda7ac3490d78c3e6c21d7d56e7f4f9676bc9b8e (diff) | |
Fixed incorrect usage of its in query.py docstring
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16024 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/db/models/query.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/query.py b/django/db/models/query.py index 58f9313e3d..fbd391971f 100644 --- a/django/db/models/query.py +++ b/django/db/models/query.py @@ -712,7 +712,7 @@ class QuerySet(object): def using(self, alias): """ - Selects which database this QuerySet should excecute it's query against. + Selects which database this QuerySet should excecute its query against. """ clone = self._clone() clone._db = alias |
