Skip to content

Commit

Permalink
Merge pull request pallets-eco#736 from kuter/fix_simple_example_typo
Browse files Browse the repository at this point in the history
fix typo in Simple Example
  • Loading branch information
davidism committed May 13, 2019
2 parents 95f5012 + 6dc94d5 commit 42d40b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ A Simple Example
email = db.Column(db.String, unique=True, nullable=False)
db.session.add(User(name="Flask", email="example@example.com"))
db.session.add(User(username="Flask", email="example@example.com"))
db.session.commit()
users = User.query.all()
Expand Down

0 comments on commit 42d40b3

Please sign in to comment.