summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-05-27 14:09:57 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-05-27 14:09:57 +0000
commitac2772bd5c9a6c6db01d0161cb8a4a9e8902637f (patch)
tree9d23ecac1a13f07f7dc581e0eaf7c11228e0654c /docs
parent5bb8c8488285cdaa0563ca5e9930bdf52f004f55 (diff)
Fixed a typo.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5369 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/url_dispatch.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/url_dispatch.txt b/docs/url_dispatch.txt
index f179116cae..1a2efe605a 100644
--- a/docs/url_dispatch.txt
+++ b/docs/url_dispatch.txt
@@ -564,7 +564,7 @@ code, Django provides the ``django.core.urlresolvers.reverse()``. The
reverse(viewname, urlconf=None, args=None, kwargs=None)
-The view name is either the function name or the `URL pattern name`_).
+The view name is either the function name or the `URL pattern name`_.
Normally you will not need to worry about the ``urlconf`` parameter and will
only pass in the positional and keyword arguments to use in the url matching.
For example::