summaryrefslogtreecommitdiff
path: root/docs/narr/hybrid.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-06-03 20:08:12 -0400
committerChris McDonough <chrism@plope.com>2011-06-03 20:08:12 -0400
commit54831751bbb5011b5f075c58b62720bac2251fc3 (patch)
treea1adc74b68f7828362f2b53c708204c46a480973 /docs/narr/hybrid.rst
parent945c267c446cc2d8c203e2c4303866cdcfeaa619 (diff)
downloadpyramid-54831751bbb5011b5f075c58b62720bac2251fc3.tar.gz
pyramid-54831751bbb5011b5f075c58b62720bac2251fc3.tar.bz2
pyramid-54831751bbb5011b5f075c58b62720bac2251fc3.zip
minor edits to cito's edits
Diffstat (limited to 'docs/narr/hybrid.rst')
-rw-r--r--docs/narr/hybrid.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/narr/hybrid.rst b/docs/narr/hybrid.rst
index 24845ae93..97adaeafd 100644
--- a/docs/narr/hybrid.rst
+++ b/docs/narr/hybrid.rst
@@ -251,12 +251,12 @@ configuration statement:
factory='mypackage.routes.root_factory')
The ``factory`` above points at the function we've defined. It will return
-an instance of the ``Traversable`` class as a root object whenever this route
-is matched. Instances of the ``Resource`` class can be used for tree
-traversal because they have a ``__getitem__`` method that does something
-nominally useful. Since traversal uses ``__getitem__`` to walk the resources
-of a resource tree, using traversal against the root resource implied by our
-route statement is a reasonable thing to do.
+an instance of the ``Resource`` class as a root object whenever this route is
+matched. Instances of the ``Resource`` class can be used for tree traversal
+because they have a ``__getitem__`` method that does something nominally
+useful. Since traversal uses ``__getitem__`` to walk the resources of a
+resource tree, using traversal against the root resource implied by our route
+statement is a reasonable thing to do.
.. note::