summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2010-10-18 15:51:18 +0000
committerAlex Gaynor <alex.gaynor@gmail.com>2010-10-18 15:51:18 +0000
commitb514957850f24218d2a6112889cb70529aa2c420 (patch)
treed4224768b8d96676180b901c9c21a915d737d9d3 /docs
parent0fcb09455729113f64a9873ca40bffd009b9bc5f (diff)
Fixed #14488 -- corrected a typo in the docs. Thanks to Frank Wiles for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14255 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/class-based-views.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/class-based-views.txt b/docs/topics/class-based-views.txt
index 1f5421ab25..83f060ac94 100644
--- a/docs/topics/class-based-views.txt
+++ b/docs/topics/class-based-views.txt
@@ -290,7 +290,7 @@ publication date, with the most recent first::
queryset = Publisher.objects.all(),
context_object_name = "publisher_list",
)),
- (r'^publishers/$', ListView.as_view(
+ (r'^books/$', ListView.as_view(
queryset = Book.objects.order_by("-publication_date"),
context_object_name = "book_list",
)),