summaryrefslogtreecommitdiff
path: root/docs/narr/renderers.rst
diff options
context:
space:
mode:
authorKarl O. Pinc <kop@meme.com>2013-10-07 16:12:27 -0500
committerKarl O. Pinc <kop@meme.com>2013-10-07 16:12:27 -0500
commit0681d5798574d5f3ed644bf56086208c8571e0b9 (patch)
treea5244e99c827f71e22a4f378a9e5a79f52b8572e /docs/narr/renderers.rst
parent77497acef17d5e5996ac231bf8ac9b679b291316 (diff)
downloadpyramid-0681d5798574d5f3ed644bf56086208c8571e0b9.tar.gz
pyramid-0681d5798574d5f3ed644bf56086208c8571e0b9.tar.bz2
pyramid-0681d5798574d5f3ed644bf56086208c8571e0b9.zip
Docs: renders.rst: Make sentences short per IRC chat with committers.
Diffstat (limited to 'docs/narr/renderers.rst')
-rw-r--r--docs/narr/renderers.rst12
1 files changed, 5 insertions, 7 deletions
diff --git a/docs/narr/renderers.rst b/docs/narr/renderers.rst
index b542e42a2..7c25386f5 100644
--- a/docs/narr/renderers.rst
+++ b/docs/narr/renderers.rst
@@ -56,13 +56,11 @@ serialization techniques. In practice, renderers obtain application data
values from Python dictionaries so, in practice, view callables which use
renderers return Python dictionaries.
-View callables can :ref:`explicitly call
-<example_render_to_response_call>` renderers, but they typically
-don't. Instead view configuration declares the renderer used to
-render a view callable's results. This is done with the ``renderer``
-attribute. For example, this call to
-:meth:`~pyramid.config.Configurator.add_view` associates the ``json``
-renderer with a view callable:
+View callables can :ref:`explicitly call <example_render_to_response_call>`
+renderers. Typically view configuration declares the renderer used to render
+a view callable's results. This is done with the ``renderer`` attribute.
+For example, this call to :meth:`~pyramid.config.Configurator.add_view`
+associates the ``json`` renderer with a view callable:
.. code-block:: python