Commit b5149578 authored by Alex Gaynor's avatar Alex Gaynor
Browse files

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
parent 0fcb0945
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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",
        )),