diff options
| author | Steve Piercy <web@stevepiercy.com> | 2015-11-14 03:15:59 -0800 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2015-11-14 03:15:59 -0800 |
| commit | 2f6864759d66b8a9cea845d8e6b628b5bede5336 (patch) | |
| tree | 53c8470895c394bea393c1090897ef6b44a2563b /docs/tutorials | |
| parent | cad9db73f4040d6b75d43425538c135078dda91e (diff) | |
| download | pyramid-2f6864759d66b8a9cea845d8e6b628b5bede5336.tar.gz pyramid-2f6864759d66b8a9cea845d8e6b628b5bede5336.tar.bz2 pyramid-2f6864759d66b8a9cea845d8e6b628b5bede5336.zip | |
minor changes to narrative flow
Diffstat (limited to 'docs/tutorials')
| -rw-r--r-- | docs/tutorials/wiki2/basiclayout.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/tutorials/wiki2/basiclayout.rst b/docs/tutorials/wiki2/basiclayout.rst index 1ba7d3958..1426e55a5 100644 --- a/docs/tutorials/wiki2/basiclayout.rst +++ b/docs/tutorials/wiki2/basiclayout.rst @@ -44,7 +44,7 @@ When you invoke the ``pserve development.ini`` command, the ``main`` function above is executed. It accepts some settings and returns a :term:`WSGI` application. (See :ref:`startup_chapter` for more about ``pserve``.) -The next step of ``main`` is to construct a :term:`Configurator` object: +Next in ``main``, construct a :term:`Configurator` object: .. literalinclude:: src/basiclayout/tutorial/__init__.py :lines: 7 @@ -279,8 +279,8 @@ The ``MyModel`` class has a ``__tablename__`` attribute. This informs SQLAlchemy which table to use to store the data representing instances of this class. -The Index import and the Index object creation is not required for this -tutorial, and will be removed in the next step. - That's about all there is to it regarding models, views, and initialization code in our stock application. + +The Index import and the Index object creation is not required for this +tutorial, and will be removed in the next step. |
