summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorCasey Duncan <casey.duncan@gmail.com>2010-11-21 21:55:28 -0700
committerCasey Duncan <casey.duncan@gmail.com>2010-11-21 21:55:28 -0700
commit0438fa8fbed9ecb9a795efc8eee32ba6e3302054 (patch)
tree26240388c9e32b982b6a078ce77bc84ccb11982b /docs
parent16a01d6c53651ab2fd90939c9d6e31cadf7168e9 (diff)
downloadpyramid-0438fa8fbed9ecb9a795efc8eee32ba6e3302054.tar.gz
pyramid-0438fa8fbed9ecb9a795efc8eee32ba6e3302054.tar.bz2
pyramid-0438fa8fbed9ecb9a795efc8eee32ba6e3302054.zip
Break sentence in leiu of semicolon splice
Diffstat (limited to 'docs')
-rw-r--r--docs/narr/urldispatch.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/narr/urldispatch.rst b/docs/narr/urldispatch.rst
index 3de4c6d07..f0aafb4f1 100644
--- a/docs/narr/urldispatch.rst
+++ b/docs/narr/urldispatch.rst
@@ -365,9 +365,9 @@ a single value.
Route Declaration Ordering
~~~~~~~~~~~~~~~~~~~~~~~~~~
-Because route configuration declarations are evaluated in a specific
-order when a request enters the system, route configuration
-declaration ordering is very important.
+Route configuration declarations are evaluated in a specific
+order when a request enters the system. As a result, the
+order of route configuration declarations is very important.
The order that routes declarations are evaluated is the order in which
they are added to the application at startup time. This is unlike
@@ -387,7 +387,7 @@ be added in the following order:
members/abc
In such a configuration, the ``members/abc`` pattern would *never* be
-matched; this is because the match ordering will always match
+matched. This is because the match ordering will always match
``members/{def}`` first; the route configuration with ``members/abc``
will never be evaluated.