Skip to content

Commit

Permalink
Merge pull request #141 from iJebus/patch-1
Browse files Browse the repository at this point in the history
Update quickstart.rst
  • Loading branch information
lepture committed Jul 29, 2014
2 parents cde8c7d + a77165f commit 57f0823
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ Creating Forms
Flask-WTF provides your Flask application integration with WTForms. For example::

from flask_wtf import Form
from wtforms import TextField
from wtforms import StringField
from wtforms.validators import DataRequired

class MyForm(Form):
name = TextField('name', validators=[DataRequired()])
name = StringField('name', validators=[DataRequired()])


.. note::
Expand Down

0 comments on commit 57f0823

Please sign in to comment.