diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 9bd5feda..854429b2 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -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 @@ -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.