From ecb31c680451cbcbf3b933e620d3bf4ee42a8042 Mon Sep 17 00:00:00 2001 From: Pengfei Xue Date: Wed, 30 Oct 2013 16:45:44 +0800 Subject: [PATCH] fix typo --- docs/appcontext.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/appcontext.rst b/docs/appcontext.rst index 40a075e4..3d2412f0 100644 --- a/docs/appcontext.rst +++ b/docs/appcontext.rst @@ -82,7 +82,7 @@ moves between threads and it will not be shared between requests. As such it is the perfect place to store database connection information and other things. The internal stack object is called :data:`flask._app_ctx_stack`. Extensions are free to store additional information on the topmost level, -assuming they pick a sufficiently unique name and should put there +assuming they pick a sufficiently unique name and should put their information there, instead on the :data:`flask.g` object which is reserved for user code.