summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/narr/templates.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/narr/templates.rst b/docs/narr/templates.rst
index a85c9b535..753b8ddf6 100644
--- a/docs/narr/templates.rst
+++ b/docs/narr/templates.rst
@@ -30,10 +30,10 @@ The most straightforward way to use a template within
:term:`view callable`. You may use whatever API is supplied by a
given templating engine to do so.
-:app:`Pyramid` provides various APIs that allow you to render
-templates directly from within a view callable. For example, if there
-is a :term:`Chameleon` ZPT template named ``foo.pt`` in a directory in
-your application named ``templates``, you can render the template from
+:app:`Pyramid` provides various APIs that allow you to render templates
+directly from within a view callable. For example, if there is a
+:term:`Chameleon` ZPT template named ``foo.pt`` in a directory named
+``templates`` in your application, you can render the template from
within the body of a view callable like so:
.. code-block:: python