From 4f6b3105135026bbd8d0045703b5b5746554239e Mon Sep 17 00:00:00 2001 From: "Thiago J. Barbalho" Date: Sat, 2 Nov 2019 20:56:35 +0000 Subject: [PATCH] Fix typo --- docs/patterns/deferredcallbacks.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/patterns/deferredcallbacks.rst b/docs/patterns/deferredcallbacks.rst index c96e5891..a139c5b8 100644 --- a/docs/patterns/deferredcallbacks.rst +++ b/docs/patterns/deferredcallbacks.rst @@ -16,7 +16,7 @@ response object. One way is to avoid the situation. Very often that is possible. For instance you can try to move that logic into a :meth:`~flask.Flask.after_request` -callback instead. However, sometimes moving code there makes it more +callback instead. However, sometimes moving code there makes it more complicated or awkward to reason about. As an alternative, you can use :func:`~flask.after_this_request` to register