diff --git a/docs/topics/class-based-views.txt b/docs/topics/class-based-views.txt index 1f5421ab250..83f060ac945 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", )),