diff options
| author | Chris Beelby <cmbeelby@gmail.com> | 2011-02-03 14:00:48 -0500 |
|---|---|---|
| committer | Chris Beelby <cmbeelby@gmail.com> | 2011-02-03 14:00:48 -0500 |
| commit | 291995fa17ae55adfda09c4eda095fd5e8cb21d8 (patch) | |
| tree | 4706be40715bdc61bafacc7148f7ab1587bbff31 /docs/tutorials/wiki/basiclayout.rst | |
| parent | 9b514e5df0caba9a02bb6d2915d5eb3f13e7a897 (diff) | |
| download | pyramid-291995fa17ae55adfda09c4eda095fd5e8cb21d8.tar.gz pyramid-291995fa17ae55adfda09c4eda095fd5e8cb21d8.tar.bz2 pyramid-291995fa17ae55adfda09c4eda095fd5e8cb21d8.zip | |
Corrected a/an usage and also clarified "deployment" to mean to a production system (as opposed to deploying to a development, QA, etc... machine)
Diffstat (limited to 'docs/tutorials/wiki/basiclayout.rst')
| -rw-r--r-- | docs/tutorials/wiki/basiclayout.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tutorials/wiki/basiclayout.rst b/docs/tutorials/wiki/basiclayout.rst index 884f17840..5c1dcb0e6 100644 --- a/docs/tutorials/wiki/basiclayout.rst +++ b/docs/tutorials/wiki/basiclayout.rst @@ -20,7 +20,7 @@ well as to contain application configuration code. When you run the application using the ``paster`` command using the ``development.ini`` generated config file, the application configuration -points at an Setuptools *entry point* described as ``egg:tutorial``. In our +points at a Setuptools *entry point* described as ``egg:tutorial``. In our application, because the application's ``setup.py`` file says so, this entry point happens to be the ``main`` function within the file named ``__init__.py``: @@ -181,7 +181,7 @@ composed of :term:`middleware`. The ``egg:WebError#evalerror`` middleware is at the "top" of the pipeline. This is middleware which displays debuggable errors in the browser while -you're developing (not recommended for deployment). +you're developing (not recommended for a production system). The ``egg:repoze.zodbconn#closer`` middleware is in the middle of the pipeline. This is a piece of middleware which closes the ZODB connection |
