From 2d3f72574dcb9026c3fed6b68568351a4b18a69a Mon Sep 17 00:00:00 2001 From: David Lord Date: Mon, 15 Aug 2022 12:37:11 -0700 Subject: [PATCH] fix typo --- docs/extensiondev.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/extensiondev.rst b/docs/extensiondev.rst index 95745119..7b54917d 100644 --- a/docs/extensiondev.rst +++ b/docs/extensiondev.rst @@ -184,7 +184,7 @@ context is active when a request context is, or when a CLI command is run. If you're storing something that should be closed, use :meth:`~flask.Flask.teardown_appcontext` to ensure that it gets closed when the application context ends. If it should only be valid during a -request, or would not be used in the CLI outside a reqeust, use +request, or would not be used in the CLI outside a request, use :meth:`~flask.Flask.teardown_request`.