From abcd06cb7ae73cd0462e4b76ca038a3045f05d0c Mon Sep 17 00:00:00 2001 From: Angel Gomez Date: Thu, 26 Jul 2018 12:32:44 -0400 Subject: [PATCH] fix little grammar detail in flaskr/db.py --- examples/tutorial/flaskr/db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/tutorial/flaskr/db.py b/examples/tutorial/flaskr/db.py index 03bd3b3c..55b83e53 100644 --- a/examples/tutorial/flaskr/db.py +++ b/examples/tutorial/flaskr/db.py @@ -21,7 +21,7 @@ def get_db(): def close_db(e=None): - """If this request connected to the database, close the + """If this request is connected to the database, close the connection. """ db = g.pop('db', None)