From ac2772bd5c9a6c6db01d0161cb8a4a9e8902637f Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Sun, 27 May 2007 14:09:57 +0000 Subject: [PATCH] Fixed a typo. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5369 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/url_dispatch.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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::