summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2012-08-17 08:20:43 -0700
committerTim Graham <timograham@gmail.com>2012-08-17 08:20:43 -0700
commit6086f7356d37f4a544e3e103501f7fb4e268015c (patch)
tree88e2777ef30ea5b627c954751eded10b99753f4a /docs
parent2a36a1a07145860bad45d9c416281313ff53b910 (diff)
parent383da137851bd5fbe4f5f22e13d6237f3532a5bb (diff)
Merge pull request #271 from morty/patch-1
Fixed doc comment in django.contrib.admin example to match the code
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/contrib/admin/index.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt
index 4d39981a4d..7ca102c529 100644
--- a/docs/ref/contrib/admin/index.txt
+++ b/docs/ref/contrib/admin/index.txt
@@ -623,7 +623,7 @@ subclass::
provided in the query string and retrievable via
`self.value()`.
"""
- # Compare the requested value (either '80s' or 'other')
+ # Compare the requested value (either '80s' or '90s')
# to decide how to filter the queryset.
if self.value() == '80s':
return queryset.filter(birthday__gte=date(1980, 1, 1),