Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

minor changes to narrative flow #2131

Merged
merged 1 commit into from
Nov 14, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/tutorials/wiki2/basiclayout.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.