Author: kmtracey
Date: 2008-11-01 23:17:59 -0500 (Sat, 01 Nov 2008)
New Revision: 9328
Modified:
django/trunk/docs/topics/http/urls.txt
Log:
Fixed #9495 -- Corrected typo in urls doc. Thanks seemant.
Modified: django/trunk/docs/topics/http/urls.txt
===================================================================
--- django/trunk/docs/topics/http/urls.txt 2008-11-01 22:26:44 UTC (rev
9327)
+++ django/trunk/docs/topics/http/urls.txt 2008-11-02 04:17:59 UTC (rev
9328)
@@ -554,7 +554,7 @@
using the same view and parameters. Then, you can use this name in reverse URL
matching.
-Here's the above example, rewritten to used named URL patterns::
+Here's the above example, rewritten to use named URL patterns::
urlpatterns = patterns('',
url(r'/archive/(\d{4})/$', archive, name="full-archive"),
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---