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
This commit is contained in:
Alex Gaynor 2010-10-18 15:51:18 +00:00
parent 0fcb094557
commit b514957850
1 changed files with 1 additions and 1 deletions

View File

@ -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",
)),