summaryrefslogtreecommitdiff
path: root/docs/topics/http
diff options
context:
space:
mode:
authorKaren Tracey <kmtracey@gmail.com>2008-11-02 04:17:59 +0000
committerKaren Tracey <kmtracey@gmail.com>2008-11-02 04:17:59 +0000
commit8a5f2ee912cb29191f35618a05ee90a3df636ae3 (patch)
treeed0f9163545e7b8dd81f8071d1d6d1bb4f84dd08 /docs/topics/http
parent83af0b8ff355698a3aa436bad851156c9619f7ee (diff)
Fixed #9495 -- Corrected typo in urls doc. Thanks seemant.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9328 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/topics/http')
-rw-r--r--docs/topics/http/urls.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/http/urls.txt b/docs/topics/http/urls.txt
index dcb434bf39..dcbe18ab04 100644
--- a/docs/topics/http/urls.txt
+++ b/docs/topics/http/urls.txt
@@ -554,7 +554,7 @@ give a name to a URL pattern in order to distinguish it from other patterns
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"),