summaryrefslogtreecommitdiff
path: root/tests/modeltests/get_object_or_404
diff options
context:
space:
mode:
authorKaren Tracey <kmtracey@gmail.com>2009-05-17 16:45:28 +0000
committerKaren Tracey <kmtracey@gmail.com>2009-05-17 16:45:28 +0000
commit50745cc31ecd0ff76dafed2fb903d14c1b30d707 (patch)
treec2c20c8a28dd952023df4f9d4604ec64dbeae4ca /tests/modeltests/get_object_or_404
parent92e5249a677c1c60d2a13ad0203716840fc71143 (diff)
Fixed #11066 -- Corrected 15 duplicate "the"s found in docs and code comments. Thanks kaikuehne.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10801 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/modeltests/get_object_or_404')
-rw-r--r--tests/modeltests/get_object_or_404/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/modeltests/get_object_or_404/models.py b/tests/modeltests/get_object_or_404/models.py
index 6e4da44481..b2812e61e7 100644
--- a/tests/modeltests/get_object_or_404/models.py
+++ b/tests/modeltests/get_object_or_404/models.py
@@ -55,7 +55,7 @@ Http404: No Article matches the given query.
>>> get_object_or_404(Article, title__contains="Run")
<Article: Run away!>
-# We can also use the the Article manager through an Author object.
+# We can also use the Article manager through an Author object.
>>> get_object_or_404(a.article_set, title__contains="Run")
<Article: Run away!>