Author: Alex
Date: 2010-10-18 10:51:18 -0500 (Mon, 18 Oct 2010)
New Revision: 14255

Modified:
   django/trunk/docs/topics/class-based-views.txt
Log:
Fixed #14488 -- corrected a typo in the docs.  Thanks to Frank Wiles for the 
patch.

Modified: django/trunk/docs/topics/class-based-views.txt
===================================================================
--- django/trunk/docs/topics/class-based-views.txt      2010-10-18 13:34:47 UTC 
(rev 14254)
+++ django/trunk/docs/topics/class-based-views.txt      2010-10-18 15:51:18 UTC 
(rev 14255)
@@ -290,7 +290,7 @@
             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",
         )),

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-upda...@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to