From d546179c71dc19692cd263aef46f753d312be546 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 11 Apr 2011 20:27:53 +0000 Subject: [PATCH] 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 --- django/db/models/query.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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