summaryrefslogtreecommitdiff
path: root/docs/narr/models.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/narr/models.rst')
-rw-r--r--docs/narr/models.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/narr/models.rst b/docs/narr/models.rst
index c85db63bf..2964ccb20 100644
--- a/docs/narr/models.rst
+++ b/docs/narr/models.rst
@@ -9,7 +9,7 @@ omnipresent in :mod:`repoze.bfg`:
willing to walk over when :term:`traversal` is used.
- The ``context`` and ``containment`` arguments to
- :meth:`repoze.bfg.configuration.Configurator.add_vew` often
+ :meth:`repoze.bfg.configuration.Configurator.add_view` often
reference a model class.
- A :term:`root factory` returns a model instance.
@@ -55,7 +55,7 @@ Defining a Model Constructor
----------------------------
An example of a model constructor, ``BlogEntry`` is presented below.
-It is implemente as a class which, when instantiated, becomes a model
+It is implemented as a class which, when instantiated, becomes a model
instance.
.. code-block:: python