diff options
| author | Blaise Laflamme <blaise@laflamme.org> | 2012-06-19 20:22:34 -0400 |
|---|---|---|
| committer | Blaise Laflamme <blaise@laflamme.org> | 2012-06-19 20:22:34 -0400 |
| commit | c2d65ff71dac6a9b15119db8c2fb09884f4060e3 (patch) | |
| tree | 23760cfe4cf86ea1a7d754a8826c5489f3cae5f8 /docs/narr | |
| parent | 6cea47e9c34841cdf109899e8d965c67af3a5ce9 (diff) | |
| download | pyramid-c2d65ff71dac6a9b15119db8c2fb09884f4060e3.tar.gz pyramid-c2d65ff71dac6a9b15119db8c2fb09884f4060e3.tar.bz2 pyramid-c2d65ff71dac6a9b15119db8c2fb09884f4060e3.zip | |
fixed typos
Diffstat (limited to 'docs/narr')
| -rw-r--r-- | docs/narr/templates.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/narr/templates.rst b/docs/narr/templates.rst index 5656026ae..860010a1a 100644 --- a/docs/narr/templates.rst +++ b/docs/narr/templates.rst @@ -718,7 +718,7 @@ Using def inside Mako Templates ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ To use a def inside a Mako template, given a :term:`Mako` template file named -``foo.mak`` and a defname ``bar``, you can configure the template as a +``foo.mak`` and a def named ``bar``, you can configure the template as a :term:`renderer` like so: .. code-block:: python @@ -726,7 +726,7 @@ To use a def inside a Mako template, given a :term:`Mako` template file named from pyramid.view import view_config - @view_config(renderer='foo#defname.mak') + @view_config(renderer='foo#bar.mak') def my_view(request): return {'project':'my project'} |
