From b514957850f24218d2a6112889cb70529aa2c420 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Mon, 18 Oct 2010 15:51:18 +0000 Subject: [PATCH] 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 --- docs/topics/class-based-views.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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", )),