summaryrefslogtreecommitdiff
path: root/docs/narr
diff options
context:
space:
mode:
authorMartijn Pieters <mj@zopatista.com>2012-03-01 14:52:49 +0100
committerMartijn Pieters <mj@zopatista.com>2012-03-01 14:52:49 +0100
commit6269a1c058a77438b90a165c6541685c1bfaa8db (patch)
treeec8e45fa1698466fa2253681d595df649893ecfe /docs/narr
parent1ab81b7d9bbab2b29f4c58581bf62c5389ad068e (diff)
downloadpyramid-6269a1c058a77438b90a165c6541685c1bfaa8db.tar.gz
pyramid-6269a1c058a77438b90a165c6541685c1bfaa8db.tar.bz2
pyramid-6269a1c058a77438b90a165c6541685c1bfaa8db.zip
Remove mention of the `root_factory` argument.
The example code earlier on the page does not use the `root_factory` argument, only the `settings` argument. This is a fix for pyramid issue #452.
Diffstat (limited to 'docs/narr')
-rw-r--r--docs/narr/startup.rst7
1 files changed, 3 insertions, 4 deletions
diff --git a/docs/narr/startup.rst b/docs/narr/startup.rst
index 78b119687..8e28835af 100644
--- a/docs/narr/startup.rst
+++ b/docs/narr/startup.rst
@@ -102,10 +102,9 @@ Here's a high-level time-ordered overview of what happens when you press
the meanings of these keys.
#. The ``main`` function first constructs a
- :class:`~pyramid.config.Configurator` instance, passing a root resource
- factory (constructor) to it as its ``root_factory`` argument, and
- ``settings`` dictionary captured via the ``**settings`` kwarg as its
- ``settings`` argument.
+ :class:`~pyramid.config.Configurator` instance, passing the ``settings``
+ dictionary captured via the ``**settings`` kwarg as its ``settings``
+ argument.
The ``settings`` dictionary contains all the options in the ``[app:main]``
section of our .ini file except the ``use`` option (which is internal to