summaryrefslogtreecommitdiff
path: root/docs/narr
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2010-01-17 17:28:30 +0000
committerChris McDonough <chrism@agendaless.com>2010-01-17 17:28:30 +0000
commit04bee54e9b793790e8e612ccaa50547f1e440e9f (patch)
treea97967720f8ad86712ffe73d5df3a7f99dfa2e7b /docs/narr
parente8a5c7466b96c5d9c6d8127e31c55220c2c464af (diff)
downloadpyramid-04bee54e9b793790e8e612ccaa50547f1e440e9f.tar.gz
pyramid-04bee54e9b793790e8e612ccaa50547f1e440e9f.tar.bz2
pyramid-04bee54e9b793790e8e612ccaa50547f1e440e9f.zip
Reduce overall book size by not giving each ZCML directive its own chapter.
Diffstat (limited to 'docs/narr')
-rw-r--r--docs/narr/contextfinding.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/narr/contextfinding.rst b/docs/narr/contextfinding.rst
index 74d9e3cc5..a31d0dc19 100644
--- a/docs/narr/contextfinding.rst
+++ b/docs/narr/contextfinding.rst
@@ -24,9 +24,9 @@ finding` and :term:`view lookup`.
the :mod:`repoze.bfg` view lookup subsystem is provided with a
:term:`request`, a :term:`context` and a :term:`view name`. It is
then responsible for finding and invoking a :term:`view callable`.
- A view callable is a specific bit of code that receives the
- :term:`request` and which returns a :term:`response`, written and
- registered by the application developer.
+ A view callable is a specific bit of code written and registered by
+ the application developer which receives the :term:`request` and
+ which returns a :term:`response`.
These two subsystems are are used by :mod:`repoze.bfg` serially:
first, a :term:`context finding` subsystem does its job. Then the