summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-09-30 04:43:37 +0000
committerChris McDonough <chrism@agendaless.com>2009-09-30 04:43:37 +0000
commit920d2b68913979fd0e1caf03aad75e8abbc1f7ac (patch)
tree999eaf4ab7e20ee3eaee93b705ec1b579d76860a /docs
parent1e8faadb8be4e66720e6b01b9e9804a840d7026b (diff)
downloadpyramid-920d2b68913979fd0e1caf03aad75e8abbc1f7ac.tar.gz
pyramid-920d2b68913979fd0e1caf03aad75e8abbc1f7ac.tar.bz2
pyramid-920d2b68913979fd0e1caf03aad75e8abbc1f7ac.zip
Fix.
Diffstat (limited to 'docs')
-rw-r--r--docs/narr/urldispatch.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/narr/urldispatch.rst b/docs/narr/urldispatch.rst
index 3be117933..71eaf3341 100644
--- a/docs/narr/urldispatch.rst
+++ b/docs/narr/urldispatch.rst
@@ -572,14 +572,14 @@ your route configuration is looks like so, and the
If a request enters the application with the ``PATH_INFO`` value of
``/no_slash``, the first route will match. If a request enters the
-application with the ``PATH_INFO`` value of ``/no_slash``, *no* route
+application with the ``PATH_INFO`` value of ``/no_slash/``, *no* route
will match, and the slash-appending "not found" view will *not* find a
matching route with an appended slash.
-If a request enters the application with the ``PATH_INFO`` value of
-``/has_slash/``, the second route will match. If a request enters the
-application with the ``PATH_INFO`` value of ``/has_slash``, a route
-*will* be found by the slash appending notfound view. An HTTP
+However, if a request enters the application with the ``PATH_INFO``
+value of ``/has_slash/``, the second route will match. If a request
+enters the application with the ``PATH_INFO`` value of ``/has_slash``,
+a route *will* be found by the slash appending notfound view. An HTTP
redirect to ``/has_slash/`` will be returned to the user's browser.
Note that this will *lose* ``POST`` data information (turning it into