From 624194a33a586d8279dae9af306f49917aa70776 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Tue, 21 Jul 2009 02:14:36 +0000 Subject: [PATCH] [1.0.X] Cleanup of some minor markup problems in URL documentation. Thanks to Ramiro Morales for the patch (an apologies for ommitting the credit from r11275) Merge of r11275 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@11279 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/http/urls.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/http/urls.txt b/docs/topics/http/urls.txt index 153d785fc1..8f6c2e31f8 100644 --- a/docs/topics/http/urls.txt +++ b/docs/topics/http/urls.txt @@ -557,7 +557,7 @@ view:: 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 +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.