summaryrefslogtreecommitdiff
path: root/docs/narr/models.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2010-12-09 02:30:23 -0500
committerChris McDonough <chrism@plope.com>2010-12-09 02:30:23 -0500
commitd7f2590a4c2c2164bdb01ba977119ccbb6b2b09c (patch)
tree8efe722347f1159d78f1dfb79bcc4c1c4ca3d931 /docs/narr/models.rst
parent8cbe4d7a5a41e49151f524b720fef210948a60d6 (diff)
downloadpyramid-d7f2590a4c2c2164bdb01ba977119ccbb6b2b09c.tar.gz
pyramid-d7f2590a4c2c2164bdb01ba977119ccbb6b2b09c.tar.bz2
pyramid-d7f2590a4c2c2164bdb01ba977119ccbb6b2b09c.zip
fix docs: pyramid.configuration -> pyramid.config
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 20f443571..2c72e766d 100644
--- a/docs/narr/models.rst
+++ b/docs/narr/models.rst
@@ -9,14 +9,14 @@ omnipresent in :app:`Pyramid`:
willing to walk over when :term:`traversal` is used.
- The ``context`` and ``containment`` arguments to
- :meth:`pyramid.configuration.Configurator.add_view` often
+ :meth:`pyramid.config.Configurator.add_view` often
reference a model class.
- A :term:`root factory` returns a model instance.
- A model instance is generated as a result of :term:`url dispatch`
(see the ``factory`` argument to
- :meth:`pyramid.configuration.Configurator.add_route`).
+ :meth:`pyramid.config.Configurator.add_route`).
- A model instance is exposed to :term:`view` code as the
:term:`context` of a view.