summaryrefslogtreecommitdiff
path: root/docs/narr/project.rst
diff options
context:
space:
mode:
authorCasey Duncan <casey.duncan@gmail.com>2010-12-12 09:40:19 -0700
committerCasey Duncan <casey.duncan@gmail.com>2010-12-12 09:40:19 -0700
commit226c469217cbddc3443da2a60dc414b82021bcbe (patch)
treec049b1c25b4b70a43f2b99f8515fd3d628cbffd2 /docs/narr/project.rst
parent87a6ffdb91ae9f983169c3e9da15ea0266745a74 (diff)
parentfee38663daccc0130d0c34dbc5a14e67bef2e183 (diff)
downloadpyramid-226c469217cbddc3443da2a60dc414b82021bcbe.tar.gz
pyramid-226c469217cbddc3443da2a60dc414b82021bcbe.tar.bz2
pyramid-226c469217cbddc3443da2a60dc414b82021bcbe.zip
fix merge conflicts
Diffstat (limited to 'docs/narr/project.rst')
-rw-r--r--docs/narr/project.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/narr/project.rst b/docs/narr/project.rst
index 6036feb90..f8a9017db 100644
--- a/docs/narr/project.rst
+++ b/docs/narr/project.rst
@@ -754,7 +754,7 @@ also informs Python that the directory which contains it is a *package*.
:linenos:
#. Line 1 imports the :term:`Configurator` class from
- :mod:`pyramid.configuration` that we use later.
+ :mod:`pyramid.config` that we use later.
#. Line 2 imports the ``get_root`` function from
:mod:`myproject.models` that we use later.
@@ -915,7 +915,7 @@ made for you by any paster template, you can decide to lay your code out any
way you see fit.
For example, the configuration method named
-:meth:`~pyramid.configuration.Configurator.add_view` requires you to pass a
+:meth:`~pyramid.config.Configurator.add_view` requires you to pass a
:term:`dotted Python name` or a direct object reference as the class or
function to be used as a view. By default, the ``pyramid_starter`` paster
template would have you add view functions to the ``views.py`` module in your