summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-01-28 23:44:53 -0500
committerChris McDonough <chrism@plope.com>2011-01-28 23:44:53 -0500
commita957b72b0cde9feab72c9c9df60a6787a224c2d1 (patch)
treeef98d517c9ee26869752d36b57168bb5c4f881f8 /docs
parente3d79c037864257e5ff3eea4d80bee0bfd55e7f5 (diff)
downloadpyramid-a957b72b0cde9feab72c9c9df60a6787a224c2d1.tar.gz
pyramid-a957b72b0cde9feab72c9c9df60a6787a224c2d1.tar.bz2
pyramid-a957b72b0cde9feab72c9c9df60a6787a224c2d1.zip
shorten too-long lines for latex
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