Made grammar changes to the Tutorial.

This commit is contained in:
Matthew Rankin 2010-12-30 09:00:56 -06:00
parent 8421c1ea0c
commit 86cc6f9806
10 changed files with 63 additions and 64 deletions

View file

@ -18,8 +18,8 @@ the just created `flaskr` folder:
);
This schema consists of a single table called `entries` and each row in
this table has an `id`, a `title` and a `text`. The `id` is an
automatically incrementing integer and a primary key, the other two are
strings that must not be null.
this table has an `id`, a `title`, and a `text` field. The `id` serves as
the primary key and is an automatically incrementing integer. The other two
fields are strings that must not be null.
Continue with :ref:`tutorial-setup`.