diff options
| author | Karl O. Pinc <kop@meme.com> | 2018-11-23 23:16:08 -0600 |
|---|---|---|
| committer | Karl O. Pinc <kop@meme.com> | 2018-11-23 23:49:13 -0600 |
| commit | 197a77b5783151c742e335235323627c0538b2a6 (patch) | |
| tree | eca59c35feb7a2701840e309cebc8a14250ec022 /docs/narr | |
| parent | d728e112303a1eabd774fb2b8fde7d117422222d (diff) | |
| download | pyramid-197a77b5783151c742e335235323627c0538b2a6.tar.gz pyramid-197a77b5783151c742e335235323627c0538b2a6.tar.bz2 pyramid-197a77b5783151c742e335235323627c0538b2a6.zip | |
Split long sentence into two and clarify each
Diffstat (limited to 'docs/narr')
| -rw-r--r-- | docs/narr/startup.rst | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/docs/narr/startup.rst b/docs/narr/startup.rst index a72b89d4c..f740baadf 100644 --- a/docs/narr/startup.rst +++ b/docs/narr/startup.rst @@ -68,11 +68,9 @@ 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 this application. See :ref:`logging_config` for more information. -#. The application's *constructor* named by the entry point referenced on the - ``use=`` line of the section representing your :app:`Pyramid` application is - passed the key/value parameters mentioned within the section in which it's - defined. The constructor is meant to return a :term:`router` instance, - which is a :term:`WSGI` application. +#. The application's *constructor* is named by the entry point referenced on the ``use=`` line of the ``ini`` section which configures your :app:`Pyramid` application. + It is passed the key/value parameters mentioned within the this section. + The constructor is meant to return a :term:`router` instance, which is a :term:`WSGI` application. For :app:`Pyramid` applications, the constructor will be a function named ``main`` in the ``__init__.py`` file within the :term:`package` in which |
