From 1d49343bb19933f5f8057a548cb69657d8cbd699 Mon Sep 17 00:00:00 2001 From: lord63 Date: Sat, 7 Nov 2015 09:04:24 +0800 Subject: [PATCH] Fix typo in app_ctx_globals_class doc in app.py --- flask/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask/app.py b/flask/app.py index 3d741ae9..91139773 100644 --- a/flask/app.py +++ b/flask/app.py @@ -168,7 +168,7 @@ class Flask(_PackageBoundObject): #: #: 1. Store arbitrary attributes on flask.g. #: 2. Add a property for lazy per-request database connectors. - #: 3. Return None instead of AttributeError on expected attributes. + #: 3. Return None instead of AttributeError on unexpected attributes. #: 4. Raise exception if an unexpected attr is set, a "controlled" flask.g. #: #: In Flask 0.9 this property was called `request_globals_class` but it