From 5e5536aa8d1565fdeec92a6e5e158ed1ecedb7ac Mon Sep 17 00:00:00 2001 From: shonenada Date: Thu, 16 Jun 2016 10:32:57 +0800 Subject: [PATCH] Fix typo in Docs --- docs/quickstart.rst.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quickstart.rst.inc b/docs/quickstart.rst.inc index 0ab63c7..703fd87 100644 --- a/docs/quickstart.rst.inc +++ b/docs/quickstart.rst.inc @@ -145,7 +145,7 @@ Well, if your application works under SQLAlchemy:: def add_role(self, role): self.roles.append(role) - def add_role(self, roles): + def add_roles(self, roles): for role in roles: self.add_role(role)