summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/narr/firstapp.rst2
-rw-r--r--docs/narr/project.rst2
-rw-r--r--docs/narr/traversal.rst2
3 files changed, 3 insertions, 3 deletions
diff --git a/docs/narr/firstapp.rst b/docs/narr/firstapp.rst
index 00628f08c..01ad88704 100644
--- a/docs/narr/firstapp.rst
+++ b/docs/narr/firstapp.rst
@@ -257,7 +257,7 @@ value ``'goodbye'``. The ``name`` argument supplied in this
:term:`view name` of ``goodbye`` should cause the ``goodbye_world``
view callable to be invoked. In this particular application, this
means that the ``goodbye_world`` view callable will be invoked when
-the URL ``/goodbye`` is visted by a browser.
+the URL ``/goodbye`` is visited by a browser.
Each invocation of the ``add_view`` method implies a :term:`view
configuration` registration. Each :term:`predicate` provided as a
diff --git a/docs/narr/project.rst b/docs/narr/project.rst
index 797930ba6..b6edb8bda 100644
--- a/docs/narr/project.rst
+++ b/docs/narr/project.rst
@@ -49,7 +49,7 @@ The included templates are these:
:term:`SQLAlchemy`
``bfg_alchemy``
- URL mapping via :term:`traversal` and persistence va
+ URL mapping via :term:`traversal` and persistence via
:term:`SQLAlchemy`
Each of these project templates uses :term:`ZCML` instead of
diff --git a/docs/narr/traversal.rst b/docs/narr/traversal.rst
index ef3803b13..9337d7943 100644
--- a/docs/narr/traversal.rst
+++ b/docs/narr/traversal.rst
@@ -113,7 +113,7 @@ For example, if the path info sequence is ``['a', 'b', 'c']``:
"A" object's ``__getitem__`` is called with that value (``b``) as an
argument; we'll presume it succeeds.
-- When the "A" object's ``__getitem__`` succeeeds it will return an
+- When the "A" object's ``__getitem__`` succeeds it will return an
object, which we'll call "B". The :term:`context` temporarily
becomes the "B" object.