From d60e13436dbe144b603eed686adcdbfb0788ac9c Mon Sep 17 00:00:00 2001 From: Christopher Bunn Date: Wed, 28 Jan 2015 21:04:43 -0500 Subject: [PATCH] Fixed minor docstring typo for teardown_request() --- flask/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask/app.py b/flask/app.py index 96667155..2f273592 100644 --- a/flask/app.py +++ b/flask/app.py @@ -1301,7 +1301,7 @@ class Flask(_PackageBoundObject): .. admonition:: Debug Note In debug mode Flask will not tear down a request on an exception - immediately. Instead if will keep it alive so that the interactive + immediately. Instead it will keep it alive so that the interactive debugger can still access it. This behavior can be controlled by the ``PRESERVE_CONTEXT_ON_EXCEPTION`` configuration variable. """