Skip to content

Commit

Permalink
Merge pull request #104 from mlncn/patch-1
Browse files Browse the repository at this point in the history
Minor improvements to the Quickstart document
  • Loading branch information
lepture committed Jan 19, 2014
2 parents 832740e + 2242b32 commit 32ab9b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/quickstart.rst
Expand Up @@ -9,7 +9,7 @@ to the :doc:`install` section.
Creating Forms
--------------

Flask-WTF provides you with the integration WTForms. For example::
Flask-WTF provides your Flask application integration with WTForms. For example::

from flask_wtf import Form
from wtforms import TextField
Expand Down Expand Up @@ -60,8 +60,8 @@ Validating the request in your view handlers::
return redirect('/success')
return render_template('submit.html', form=form)

Note that, you don't have to pass ``request.form`` to Flask-WTF, it will
load automatically. And the convience ``validate_on_submit`` will check
Note that you don't have to pass ``request.form`` to Flask-WTF; it will
load automatically. And the convenience ``validate_on_submit`` will check
if it is a POST request and if it is valid.

Heading over to :doc:`form` to learn more skills.

0 comments on commit 32ab9b4

Please sign in to comment.