From cb61696b47e48a84d42391e58c1bc2f926d4018f Mon Sep 17 00:00:00 2001 From: "Ifiok Jr." Date: Mon, 20 Jan 2014 04:28:40 +0000 Subject: [PATCH] Update appcontext.rst small edit --- docs/appcontext.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/appcontext.rst b/docs/appcontext.rst index 3d2412f0..a9d302b7 100644 --- a/docs/appcontext.rst +++ b/docs/appcontext.rst @@ -83,7 +83,7 @@ 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 their -information there, instead on the :data:`flask.g` object which is reserved +information there, instead of on the :data:`flask.g` object which is reserved for user code. For more information about that, see :ref:`extension-dev`.