summaryrefslogtreecommitdiff
path: root/docs/tutorials
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-11-14 07:39:28 +0000
committerChris McDonough <chrism@agendaless.com>2009-11-14 07:39:28 +0000
commitc8503f330304bb58f597547d36b7ffa7957266c2 (patch)
treea909e3749d1854cbef53dc0879cc875cbfd4ee27 /docs/tutorials
parent1c163c0258daddbb4c584d34fdb3b91b797fd10d (diff)
downloadpyramid-c8503f330304bb58f597547d36b7ffa7957266c2.tar.gz
pyramid-c8503f330304bb58f597547d36b7ffa7957266c2.tar.bz2
pyramid-c8503f330304bb58f597547d36b7ffa7957266c2.zip
Spellcheck.
Diffstat (limited to 'docs/tutorials')
-rw-r--r--docs/tutorials/cmf/workflow.rst2
-rw-r--r--docs/tutorials/zeo/index.rst2
-rw-r--r--docs/tutorials/zodbsessions/index.rst2
3 files changed, 3 insertions, 3 deletions
diff --git a/docs/tutorials/cmf/workflow.rst b/docs/tutorials/cmf/workflow.rst
index a66d8d78e..ff9527591 100644
--- a/docs/tutorials/cmf/workflow.rst
+++ b/docs/tutorials/cmf/workflow.rst
@@ -8,7 +8,7 @@ In CMF, the "workflow tool" allows developers to design state machines
which imply transition between content states.
:mod:`repoze.bfg` itself has no such concept, but the
-:term:`repoze.workflow` packge provides a simple state machine
+:term:`repoze.workflow` package provides a simple state machine
implementation that can act as a barebones workflow tool. See its
documentation for more information.
diff --git a/docs/tutorials/zeo/index.rst b/docs/tutorials/zeo/index.rst
index f96167402..6519145db 100644
--- a/docs/tutorials/zeo/index.rst
+++ b/docs/tutorials/zeo/index.rst
@@ -18,7 +18,7 @@ exposed by :term:`mod_wsgi`.
The easiest way to get started with ZODB in a :mod:`repoze.bfg`
application is to use the ZODB ``bfg_zodb`` paster template. See
:ref:`additional_paster_templates` for more information about using
-theis template. However, the Paster template does not set up a
+this template. However, the Paster template does not set up a
ZEO-capable application. This chapter shows you how to do that "from
scratch".
diff --git a/docs/tutorials/zodbsessions/index.rst b/docs/tutorials/zodbsessions/index.rst
index 69dc67d2b..43a8cf5db 100644
--- a/docs/tutorials/zodbsessions/index.rst
+++ b/docs/tutorials/zodbsessions/index.rst
@@ -140,7 +140,7 @@ Configuration
See :ref:`MyProject_ini` for more information about project Paste
``.ini`` files.
-#. Add a ``get_session`` API to your application. I've chosed to add
+#. Add a ``get_session`` API to your application. I've chosen to add
it directly to my ``views.py`` file, although it can live anywhere.
.. code-block:: python