Author: julien Date: 2011-11-12 05:39:42 -0800 (Sat, 12 Nov 2011) New Revision: 17083
Modified: django/trunk/docs/topics/http/urls.txt Log: Fixed #17205 -- Fixed a small typo in the urls doc. Thanks, rabio. Modified: django/trunk/docs/topics/http/urls.txt =================================================================== --- django/trunk/docs/topics/http/urls.txt 2011-11-12 13:30:05 UTC (rev 17082) +++ django/trunk/docs/topics/http/urls.txt 2011-11-12 13:39:42 UTC (rev 17083) @@ -688,7 +688,7 @@ URL matching (through the ``permalink()`` decorator or the :ttag:`url` template tag). Continuing this example, if you wanted to retrieve the URL for the ``archive`` view, Django's reverse URL matcher would get confused, because *two* -URLpatterns point at that view. +URL patterns point at that view. To solve this problem, Django supports **named URL patterns**. That is, you can give a name to a URL pattern in order to distinguish it from other patterns -- 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.
