summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCasey Duncan <casey.duncan@gmail.com>2010-12-31 19:17:59 -0700
committerCasey Duncan <casey.duncan@gmail.com>2010-12-31 19:17:59 -0700
commit51c5727393178461868a8072d921b7215c626257 (patch)
treed4f6df81e5266113c9fe9349393d884b30213187
parentc76dc8e3d8cd8b419aeebff06e7b31abaf350561 (diff)
downloadpyramid-51c5727393178461868a8072d921b7215c626257.tar.gz
pyramid-51c5727393178461868a8072d921b7215c626257.tar.bz2
pyramid-51c5727393178461868a8072d921b7215c626257.zip
simplify route/traversal relationship. No need to repeat ourselves
-rw-r--r--docs/narr/urldispatch.rst7
1 files changed, 3 insertions, 4 deletions
diff --git a/docs/narr/urldispatch.rst b/docs/narr/urldispatch.rst
index 5b8cb493e..c2d778dd9 100644
--- a/docs/narr/urldispatch.rst
+++ b/docs/narr/urldispatch.rst
@@ -36,10 +36,9 @@ If route configuration is present in an application, the :app:`Pyramid`
:term:`Router` checks every incoming request against an ordered set of URL
matching patterns present in a *route map*.
-If any route pattern matches the information in the :term:`request` provided
-to :app:`Pyramid`, :app:`Pyramid` will shortcut :term:`traversal`, and will
-invoke :term:`view lookup` using a :term:`context` resource generated by the
-route match.
+If any route pattern matches the information in the :term:`request`,
+:app:`Pyramid` will invoke :term:`view lookup` using a :term:`context`
+resource generated by the route match.
However, if no route pattern matches the information in the :term:`request`
provided to :app:`Pyramid`, it will fail over to using :term:`traversal` to