summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorKarl O. Pinc <kop@meme.com>2018-11-23 23:55:16 -0600
committerKarl O. Pinc <kop@meme.com>2018-11-23 23:55:16 -0600
commit799810caee1b9acb74950dbc5b0f003a386f8a38 (patch)
tree7fc81c21f26deed44d3ba8a4d5a3eca9a512fde4 /docs
parentfbf42997374321d395be9ff11a264954e0fcb70e (diff)
downloadpyramid-799810caee1b9acb74950dbc5b0f003a386f8a38.tar.gz
pyramid-799810caee1b9acb74950dbc5b0f003a386f8a38.tar.bz2
pyramid-799810caee1b9acb74950dbc5b0f003a386f8a38.zip
Better english
Diffstat (limited to 'docs')
-rw-r--r--docs/narr/startup.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/narr/startup.rst b/docs/narr/startup.rst
index baa31000d..eb255d527 100644
--- a/docs/narr/startup.rst
+++ b/docs/narr/startup.rst
@@ -74,7 +74,7 @@ Here's a high-level time-ordered overview of what happens when you press
#. The application's entry point :ref:`found above <entry_point_discovery>`, usually the entry point referenced on the above mentioned ``use=`` line, is the application's *constructor*.
It is passed the key/value parameters in :ref:`the application's .ini section <ini_section_discovery>`.
- The constructor is meant to return a :term:`router` instance, which is a :term:`WSGI` application.
+ The constructor should return a :term:`router` instance, which is a :term:`WSGI` application.
For :app:`Pyramid` applications, the constructor is a function named
``main`` in the ``__init__.py`` file within the :term:`package` in which