From 132c2c4c795ebdccc6f347867092b30b5f5086bb Mon Sep 17 00:00:00 2001 From: atupal Date: Wed, 2 Apr 2014 09:16:43 +0800 Subject: [PATCH] missed word. request tstack -> request context stack --- docs/upgrading.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/upgrading.rst b/docs/upgrading.rst index 4a0676a8..ebea0101 100644 --- a/docs/upgrading.rst +++ b/docs/upgrading.rst @@ -64,8 +64,8 @@ If you maintain an extension that was using :data:`~flask._request_ctx_stack` before, please consider changing to :data:`~flask._app_ctx_stack` if it makes sense for your extension. For instance, the app context stack makes sense for extensions which connect to databases. Using the app context stack instead of -the request stack will make extensions more readily handle use cases outside of -requests. +the request context stack will make extensions more readily handle use cases +outside of requests. Version 0.8 -----------