summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2013-01-22 00:16:17 -0800
committerSteve Piercy <web@stevepiercy.com>2013-01-22 00:16:17 -0800
commitf1134866e8ca96e1309dca930bd5345233748659 (patch)
treef7955b3fc14b8870be1531445fa7158672abeee9 /docs
parent49d8235ccca2055ca368f751037136175f80d015 (diff)
downloadpyramid-f1134866e8ca96e1309dca930bd5345233748659.tar.gz
pyramid-f1134866e8ca96e1309dca930bd5345233748659.tar.bz2
pyramid-f1134866e8ca96e1309dca930bd5345233748659.zip
More grammar clean up.
Diffstat (limited to 'docs')
-rw-r--r--docs/tutorials/wiki/definingmodels.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tutorials/wiki/definingmodels.rst b/docs/tutorials/wiki/definingmodels.rst
index 1d2710975..49372179f 100644
--- a/docs/tutorials/wiki/definingmodels.rst
+++ b/docs/tutorials/wiki/definingmodels.rst
@@ -33,7 +33,7 @@ Edit ``models.py``
.. note::
There is nothing automagically special about the filename ``models.py``. A
- project may have many models throughout its codebase in arbitrarily-named
+ project may have many models throughout its codebase in arbitrarily named
files. Files implementing models often have ``model`` in their filenames,
or they may live in a Python subpackage of your application package named
``models``, but this is only by convention.
@@ -56,7 +56,7 @@ of the root model is also always ``None``.
Then we'll add a ``Page`` class. This class should inherit from the
:class:`persistent.Persistent` class. We'll also give it an ``__init__``
method that accepts a single parameter named ``data``. This parameter will
-contain the :term:`ReStructuredText` body representing the wiki page content.
+contain the :term:`reStructuredText` body representing the wiki page content.
Note that ``Page`` objects don't have an initial ``__name__`` or
``__parent__`` attribute. All objects in a traversal graph must have a
``__name__`` and a ``__parent__`` attribute. We don't specify these here