fix typo in request context docs

This commit is contained in:
Kristin Faner 2019-10-05 17:11:08 -05:00 committed by David Lord
parent 7fdd0df6ec
commit af970bd20f
No known key found for this signature in database
GPG key ID: 7A1C87E3F5BC42A8

View file

@ -170,8 +170,8 @@ will not fail.
During testing, it can be useful to defer popping the contexts after the
request ends, so that their data can be accessed in the test function.
Using the :meth:`~Flask.test_client` as a ``with`` block to preserve the
contexts until the with block exits.
Use the :meth:`~Flask.test_client` as a ``with`` block to preserve the
contexts until the ``with`` block exits.
.. code-block:: python