From 216478f715b330e7d9298c6a11d3e5c0a1e790f8 Mon Sep 17 00:00:00 2001 From: Ron DuPlain Date: Wed, 6 Oct 2010 09:47:48 +0800 Subject: [PATCH] docs: Finished sentence on Notes on Proxies. --- docs/api.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/api.rst b/docs/api.rst index ed2a5037..00b5105e 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -421,7 +421,7 @@ Notes On Proxies ---------------- Some of the objects provided by Flask are proxies to other objects. The -reason behind this is, that these proxies are shared between threads and +reason behind this is that these proxies are shared between threads and they have to dispatch to the actual object bound to a thread behind the scenes as necessary. @@ -430,7 +430,7 @@ exceptions where it is good to know that this object is an actual proxy: - The proxy objects do not fake their inherited types, so if you want to perform actual instance checks, you have to do that on the instance - that + that is being proxied (see `_get_current_object` below). - if the object reference is important (so for example for sending :ref:`signals`)