summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/narr/urldispatch.rst6
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/narr/urldispatch.rst b/docs/narr/urldispatch.rst
index 975529cee..ad0550e69 100644
--- a/docs/narr/urldispatch.rst
+++ b/docs/narr/urldispatch.rst
@@ -1019,8 +1019,10 @@ route configuration looks like so:
.. code-block:: python
:linenos:
- config.add_route('noslash', 'no_slash', view='myproject.views.no_slash')
- config.add_route('hasslash', 'has_slash/', view='myproject.views.has_slash')
+ config.add_route('noslash', 'no_slash',
+ view='myproject.views.no_slash')
+ config.add_route('hasslash', 'has_slash/',
+ view='myproject.views.has_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