summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorKarl O. Pinc <kop@meme.com>2018-11-23 23:54:06 -0600
committerKarl O. Pinc <kop@meme.com>2018-11-23 23:54:06 -0600
commitfbf42997374321d395be9ff11a264954e0fcb70e (patch)
tree296694a9729c37ca097f53334be805a14c13f6b1 /docs
parentd9137a9b888271cdd9e52d5e885fd04589b67578 (diff)
downloadpyramid-fbf42997374321d395be9ff11a264954e0fcb70e.tar.gz
pyramid-fbf42997374321d395be9ff11a264954e0fcb70e.tar.bz2
pyramid-fbf42997374321d395be9ff11a264954e0fcb70e.zip
Use present tense instead of future tense
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 6c5fe8f60..baa31000d 100644
--- a/docs/narr/startup.rst
+++ b/docs/narr/startup.rst
@@ -76,7 +76,7 @@ Here's a high-level time-ordered overview of what happens when you press
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.
- For :app:`Pyramid` applications, the constructor will be a function named
+ For :app:`Pyramid` applications, the constructor is a function named
``main`` in the ``__init__.py`` file within the :term:`package` in which
your application lives. If this function succeeds, it will return a
:app:`Pyramid` :term:`router` instance. Here's the contents of an example