diff options
| author | Tom Mortimer-Jones <tom@morty.co.uk> | 2012-08-15 19:41:16 +0200 |
|---|---|---|
| committer | Tom Mortimer-Jones <tom@morty.co.uk> | 2012-08-15 19:41:16 +0200 |
| commit | 383da137851bd5fbe4f5f22e13d6237f3532a5bb (patch) | |
| tree | 0fb5a0745888a1b005c5ebbb187e3a0627ecf519 | |
| parent | 27192564c3193a54165752e8803b4d7b635f9022 (diff) | |
Fixed comment to match the code
| -rw-r--r-- | docs/ref/contrib/admin/index.txt | 2 |
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), |
