From b80eaf2c9978c776c9efbb267ccbfdee875d0966 Mon Sep 17 00:00:00 2001 From: Isaac To Date: Thu, 6 Feb 2020 12:14:10 -0800 Subject: [PATCH] Incorrect grammar The original sentence has incorrect grammar --- docs/reqcontext.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/reqcontext.rst b/docs/reqcontext.rst index 405bca04..719d9b61 100644 --- a/docs/reqcontext.rst +++ b/docs/reqcontext.rst @@ -256,8 +256,9 @@ exceptions where it is good to know that this object is actually a proxy: - The proxy objects cannot fake their type as the actual object types. If you want to perform instance checks, you have to do that on the object being proxied. -- If the specific object reference is important, for example for - sending :ref:`signals` or passing data to a background thread. +- The reference to the proxied object is needed in some situations, + such as sending :ref:`signals` or passing data to a background + thread. If you need to access the underlying object that is proxied, use the :meth:`~werkzeug.local.LocalProxy._get_current_object` method::