summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl O. Pinc <kop@meme.com>2013-10-07 16:29:31 -0500
committerKarl O. Pinc <kop@meme.com>2013-10-07 16:29:31 -0500
commita26d09f291bdf4f9c7853b1dbfc9643a678a7b94 (patch)
tree466eb7101f3cac35939032daf0268c61b2c355a0
parent0681d5798574d5f3ed644bf56086208c8571e0b9 (diff)
downloadpyramid-a26d09f291bdf4f9c7853b1dbfc9643a678a7b94.tar.gz
pyramid-a26d09f291bdf4f9c7853b1dbfc9643a678a7b94.tar.bz2
pyramid-a26d09f291bdf4f9c7853b1dbfc9643a678a7b94.zip
Docs: renders.rst: Make sentences that everybody's happy with.
-rw-r--r--docs/narr/renderers.rst9
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/narr/renderers.rst b/docs/narr/renderers.rst
index 7c25386f5..740c81555 100644
--- a/docs/narr/renderers.rst
+++ b/docs/narr/renderers.rst
@@ -57,10 +57,11 @@ 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. 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:
+renderers, but 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:
.. code-block:: python