fix one typo and two pycodestyle suggestions

This commit is contained in:
Frédéric Chapoton 2022-08-15 21:19:01 +02:00
parent 36af821edf
commit 40afc6ceec
3 changed files with 3 additions and 3 deletions

View file

@ -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`.