summaryrefslogtreecommitdiff
path: root/docs/narr
diff options
context:
space:
mode:
authorKarl O. Pinc <kop@meme.com>2018-11-24 09:18:53 -0600
committerKarl O. Pinc <kop@meme.com>2018-11-24 09:21:20 -0600
commit21bff45c53e06d283518265b5381450b2f188944 (patch)
treea424957320ff5649b2f5f98ec1cf576ddda442d8 /docs/narr
parentee8033a6b1292bc9a65151e34cdc34dcffd33efb (diff)
downloadpyramid-21bff45c53e06d283518265b5381450b2f188944.tar.gz
pyramid-21bff45c53e06d283518265b5381450b2f188944.tar.bz2
pyramid-21bff45c53e06d283518265b5381450b2f188944.zip
Add "constructor" glossary entry
Diffstat (limited to 'docs/narr')
-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 af9415cc9..0b3680bca 100644
--- a/docs/narr/startup.rst
+++ b/docs/narr/startup.rst
@@ -78,7 +78,7 @@ Here's a high-level time-ordered overview of what happens when you press
file and uses it to configure the Python standard library logging system for
the application. See :ref:`logging_config` for more information.
-#. The application's entry point, usually the entry point referenced on the :ref:`above mentioned <entry_point_discovery>` ``use=`` line, is the application's *constructor*.
+#. The application's entry point, usually the entry point referenced on the :ref:`above mentioned <entry_point_discovery>` ``use=`` line, is the application's :term:`constructor`.
It is passed the key/value parameters in :ref:`the application's .ini section <ini_section_discovery>`.
The constructor should return a :term:`router` instance, which is a :term:`WSGI` application.