summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki2/basiclayout.rst
diff options
context:
space:
mode:
authorKirk Strauser <kirk@strauser.com>2011-04-20 13:34:51 -0500
committerKirk Strauser <kirk@strauser.com>2011-04-20 13:34:51 -0500
commit89346583ec29dcc5d973cc807ae9899cf81b06ef (patch)
tree869e08a66f1c2414f50ad913a7cfd83bad98e646 /docs/tutorials/wiki2/basiclayout.rst
parentbea9f5b1b99fc27ee2a79512d098d688aea9d113 (diff)
downloadpyramid-89346583ec29dcc5d973cc807ae9899cf81b06ef.tar.gz
pyramid-89346583ec29dcc5d973cc807ae9899cf81b06ef.tar.bz2
pyramid-89346583ec29dcc5d973cc807ae9899cf81b06ef.zip
Fixed typos and added clarifications in a tutorial
I was working through the wiki2 tutorial this morning and found some slightly confusing bits. As I went along, I added the suggested changes to my local files to make them match the tutorial's version, but found several times that key parts were missing. I'm not new to Python so this didn't slow me down, but thought some clarifications might help new users.
Diffstat (limited to 'docs/tutorials/wiki2/basiclayout.rst')
-rw-r--r--docs/tutorials/wiki2/basiclayout.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorials/wiki2/basiclayout.rst b/docs/tutorials/wiki2/basiclayout.rst
index 0dbcf6684..9bd65e8b8 100644
--- a/docs/tutorials/wiki2/basiclayout.rst
+++ b/docs/tutorials/wiki2/basiclayout.rst
@@ -98,7 +98,7 @@ names a ``view_renderer``, which is a template which lives in the
``tutorial.views.my_view`` view returns a dictionary, a :term:`renderer` will
use this template to create a response.
-Fimnally, we use the :meth:`pyramid.config.Configurator.make_wsgi_app`
+Finally, we use the :meth:`pyramid.config.Configurator.make_wsgi_app`
method to return a :term:`WSGI` application:
.. literalinclude:: src/basiclayout/tutorial/__init__.py