From bf139847cb4e12c18ad50cfd04ea91aea246ed93 Mon Sep 17 00:00:00 2001 From: Shane Liesegang Date: Fri, 11 Jul 2014 23:45:00 -0700 Subject: [PATCH] Fixing typo in documentation Just a small usage error. :) --- docs/models.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/models.rst b/docs/models.rst index 6fea2e4..d87cff2 100644 --- a/docs/models.rst +++ b/docs/models.rst @@ -5,7 +5,7 @@ Flask-Security assumes you'll be using libraries such as SQLAlchemy, MongoEngine or Peewee to define a data model that includes a `User` and `Role` model. The fields on your models must follow a particular convention depending on the functionality your app requires. Aside from this, you're -free to add any additional fields to your model(s) if you want. At the bear +free to add any additional fields to your model(s) if you want. At the bare minimum your `User` and `Role` model should include the following fields: **User**