summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorCasey Duncan <casey.duncan@gmail.com>2010-11-22 18:30:33 -0700
committerCasey Duncan <casey.duncan@gmail.com>2010-11-22 18:30:33 -0700
commite6b6a600ffa7d04e910887311832681c000406f5 (patch)
treeddddb7952cbb97d28f863d39bff09c2a806fa474 /docs
parent2ff75526b723de58917aeb015184e94aaf4a5e41 (diff)
downloadpyramid-e6b6a600ffa7d04e910887311832681c000406f5.tar.gz
pyramid-e6b6a600ffa7d04e910887311832681c000406f5.tar.bz2
pyramid-e6b6a600ffa7d04e910887311832681c000406f5.zip
XXX Add an additional explaining sentence to clarify the chain of 'implieds' in the hybrid example. Confirm this is correct XXX
Diffstat (limited to 'docs')
-rw-r--r--docs/narr/hybrid.rst7
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/narr/hybrid.rst b/docs/narr/hybrid.rst
index c57bf0fc3..6fa6037c1 100644
--- a/docs/narr/hybrid.rst
+++ b/docs/narr/hybrid.rst
@@ -207,8 +207,11 @@ the matched route's configuration.
Because the pattern of the above route ends with ``*traverse``, when this
route configuration is matched during a request, :app:`Pyramid`
will attempt to use :term:`traversal` against the :term:`root` object
-implied by the :term:`root factory` implied by the route's
-configuration. Once :term:`traversal` has found a :term:`context`,
+implied by the :term:`root factory` that is implied by the route's
+configuration. Since no ``root_factory`` argument is explicitly specified
+for this route, this will either be the *global* root factory
+for the application, or the *default* root factory.
+Once :term:`traversal` has found a :term:`context`,
:term:`view lookup` will be invoked in almost exactly the same way it
would have been invoked in a "pure" traversal-based application.