summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2010-12-23 18:53:08 -0500
committerChris McDonough <chrism@plope.com>2010-12-23 18:53:08 -0500
commit53901dbad3cc176c86d8ab570a2d18759fb01160 (patch)
treea2b1c3cf27fb8596189bfba066789f135a9adfb8 /docs/tutorials/wiki
parent99cfc081fa0498c1fa229124efb1669793e20227 (diff)
downloadpyramid-53901dbad3cc176c86d8ab570a2d18759fb01160.tar.gz
pyramid-53901dbad3cc176c86d8ab570a2d18759fb01160.tar.bz2
pyramid-53901dbad3cc176c86d8ab570a2d18759fb01160.zip
fix references
Diffstat (limited to 'docs/tutorials/wiki')
-rw-r--r--docs/tutorials/wiki/definingviews.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tutorials/wiki/definingviews.rst b/docs/tutorials/wiki/definingviews.rst
index 53f5ff994..c051d6db7 100644
--- a/docs/tutorials/wiki/definingviews.rst
+++ b/docs/tutorials/wiki/definingviews.rst
@@ -118,7 +118,7 @@ The ``add_page`` view function
------------------------------
The ``add_page`` function will be configured to respond when the context is a
-Wiki and the :term:`view_name` is ``add_page``. We'll provide it with a
+Wiki and the :term:`view name` is ``add_page``. We'll provide it with a
``@view_config`` decorator which names the string ``add_page`` as its
:term:`view name` (via name=), the class ``tutorial.models.Wiki`` as its
context, and the renderer named ``templates/edit.pt``. This means that when
@@ -165,7 +165,7 @@ The ``edit_page`` view function
-------------------------------
The ``edit_page`` function will be configured to respond when the context is
-a Page and the :term:`view_name` is ``edit_page``. We'll provide it with a
+a Page and the :term:`view name` is ``edit_page``. We'll provide it with a
``@view_config`` decorator which names the string ``edit_page`` as its
:term:`view name` (via name=), the class ``tutorial.models.Page`` as its
context, and the renderer named ``templates/edit.pt``. This means that when