summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-02-09 14:06:37 -0500
committerChris McDonough <chrism@plope.com>2011-02-09 14:06:37 -0500
commitb371775f0c9ae7576042d9c5637fa6c028d62035 (patch)
tree909f44a367d54e2ec4f4b22df89a4a5627c04d63
parent58b7eadd3735b38ab5ddf349707115d49187ca93 (diff)
downloadpyramid-b371775f0c9ae7576042d9c5637fa6c028d62035.tar.gz
pyramid-b371775f0c9ae7576042d9c5637fa6c028d62035.tar.bz2
pyramid-b371775f0c9ae7576042d9c5637fa6c028d62035.zip
docstring fix (not explicitly parent, just lineage)
-rw-r--r--pyramid/config.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/pyramid/config.py b/pyramid/config.py
index acf023095..86691c9a1 100644
--- a/pyramid/config.py
+++ b/pyramid/config.py
@@ -1128,11 +1128,11 @@ class Configurator(object):
containment
- This value should be a Python class or :term:`interface` or
- a :term:`dotted Python name` to such an object that a parent
- object in the :term:`lineage` must provide in order for this
- view to be found and called. The nodes in your object graph
- must be "location-aware" to use this feature. See
+ This value should be a Python class or :term:`interface` (or a
+ :term:`dotted Python name`) that an object in the
+ :term:`lineage` of the context must provide in order for this view
+ to be found and called. The nodes in your object graph must be
+ "location-aware" to use this feature. See
:ref:`location_aware` for more information about
location-awareness.