Opened 12 years ago

Closed 12 years ago

#17205 closed Uncategorized (fixed)

Typo in docs/topics/http/urls.txt

Reported by: rabio Owned by: nobody
Component: Documentation Version:
Severity: Normal Keywords:
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

There is simple typo in urls documentation as may be seen in patch below:

--- a/docs/topics/http/urls.txt
+++ b/docs/topics/http/urls.txt
@@ -688,7 +688,7 @@ This is completely valid, but it leads to problems when you try to do reverse
 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

Change History (3)

comment:1 by rabio, 12 years ago

Component: UncategorizedDocumentation
Has patch: set

comment:2 by Julien Phalip, 12 years ago

Triage Stage: UnreviewedReady for checkin

comment:3 by Julien Phalip, 12 years ago

Resolution: fixed
Status: newclosed

In [17083]:

Fixed #17205 -- Fixed a small typo in the urls doc. Thanks, rabio.

Note: See TracTickets for help on using tickets.
Back to Top