summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorCasey Duncan <casey.duncan@gmail.com>2010-12-06 08:31:22 -0700
committerCasey Duncan <casey.duncan@gmail.com>2010-12-06 08:31:22 -0700
commit8220face95e205f694a28986a35146da37c5c34a (patch)
treeb304cfd8681c213e599b7a6dd54a9972871af2ab /docs
parent0d5818a63033514598f246325bc16ffbf1a98730 (diff)
downloadpyramid-8220face95e205f694a28986a35146da37c5c34a.tar.gz
pyramid-8220face95e205f694a28986a35146da37c5c34a.tar.bz2
pyramid-8220face95e205f694a28986a35146da37c5c34a.zip
clarify paragraph
Diffstat (limited to 'docs')
-rw-r--r--docs/narr/handlers.rst14
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/narr/handlers.rst b/docs/narr/handlers.rst
index dc8c71594..2ff925d30 100644
--- a/docs/narr/handlers.rst
+++ b/docs/narr/handlers.rst
@@ -27,13 +27,13 @@ during configuration. After the view handler class is instantiated, a
method on the instance is called. The method which is called depends on
the view handler configuration.
-The :meth:`pyramid.configuration.Configurator.add_handler` method will scan
-the handler class and automatically set up views for methods that are
-auto-exposed or were decorated with :class:`~pyramid.view.action`. The
-:class:`~pyramid.view.action` decorator is used to setup additional view
-configuration information for individual class methods, and can be used
-repeatedly for a single method to register multiple view configurations that
-will call that view callable.
+The :meth:`pyramid.configuration.Configurator.add_handler` method will
+scan the handler class and automatically set up views for methods that
+are auto-exposed, or were decorated with the
+:class:`~pyramid.view.action` decorator. This decorator is used to setup
+additional view configuration information for individual methods of the
+class, and can be used repeatedly for a single view method to
+register multiple view configurations for it.
Here's an example view handler class: