summaryrefslogtreecommitdiff
path: root/docs/tutorials
diff options
context:
space:
mode:
authorClaus Conrad <lists@clausconrad.com>2011-01-30 23:41:01 -0800
committerClaus Conrad <lists@clausconrad.com>2011-01-30 23:41:01 -0800
commit455196d7a4759d751dffb68369e7e02590ce26cf (patch)
treee9a865736a35e8a59e9abd1f5d89eadc24038549 /docs/tutorials
parent699da1dc1582538dbd817e53fbc51333a0d525cf (diff)
downloadpyramid-455196d7a4759d751dffb68369e7e02590ce26cf.tar.gz
pyramid-455196d7a4759d751dffb68369e7e02590ce26cf.tar.bz2
pyramid-455196d7a4759d751dffb68369e7e02590ce26cf.zip
Typo - "tutorial.models.Wiki" should be "tutorial.models.Page"
Diffstat (limited to 'docs/tutorials')
-rw-r--r--docs/tutorials/wiki/definingviews.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorials/wiki/definingviews.rst b/docs/tutorials/wiki/definingviews.rst
index 90768f320..31900233c 100644
--- a/docs/tutorials/wiki/definingviews.rst
+++ b/docs/tutorials/wiki/definingviews.rst
@@ -76,7 +76,7 @@ The ``view_page`` view function
The ``view_page`` function will be configured to respond as the default view
of a Page resource. We'll provide it with a ``@view_config`` decorator which
-names the class ``tutorial.models.Wiki`` as its context. This means that
+names the class ``tutorial.models.Page`` as its context. This means that
when a Page resource is the context, and no :term:`view name` exists in the
request, this view will be used. We inform :app:`Pyramid` this view will use
the ``templates/view.pt`` template file as a ``renderer``.