summaryrefslogtreecommitdiff
path: root/docs/narr/models.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2010-01-19 03:34:51 +0000
committerChris McDonough <chrism@agendaless.com>2010-01-19 03:34:51 +0000
commit1de5ec90e0ecb81ee1f4c4ade0b11c2cc8cf646a (patch)
treeb9209a1086b8aed62b7a451786d9e4feeb770ac8 /docs/narr/models.rst
parent37bcb77a86b73151c781d8b0b8c2d3d4e14f5fe7 (diff)
downloadpyramid-1de5ec90e0ecb81ee1f4c4ade0b11c2cc8cf646a.tar.gz
pyramid-1de5ec90e0ecb81ee1f4c4ade0b11c2cc8cf646a.tar.bz2
pyramid-1de5ec90e0ecb81ee1f4c4ade0b11c2cc8cf646a.zip
Spellcheck.
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