summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2008-05-29 12:02:11 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2008-05-29 12:02:11 +0000
commit812d8d40bd27a65e7bb7d2538576a96070363572 (patch)
tree646c27eec8a413003533c759b078a507296d6709 /docs
parent6b39dd6977031c2ea9fed26ebfc5ea90b570c3cb (diff)
Fixed #7191 -- Removed leading slashes in description of the patterns that a URLconf checks when GET data is present. Thanks, andrews.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7560 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/url_dispatch.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/url_dispatch.txt b/docs/url_dispatch.txt
index 28f15289a9..7d67cd5b53 100644
--- a/docs/url_dispatch.txt
+++ b/docs/url_dispatch.txt
@@ -157,10 +157,10 @@ The URLconf searches against the requested URL, as a normal Python string. This
does not include GET or POST parameters, or the domain name.
For example, in a request to ``http://www.example.com/myapp/``, the URLconf
-will look for ``/myapp/``.
+will look for ``myapp/``.
In a request to ``http://www.example.com/myapp/?page=3``, the URLconf will look
-for ``/myapp/``.
+for ``myapp/``.
The URLconf doesn't look at the request method. In other words, all request
methods -- ``POST``, ``GET``, ``HEAD``, etc. -- will be routed to the same