From 3c435addb01f6b2b726a5db2e575a326c12f42fe Mon Sep 17 00:00:00 2001 From: Daniel Hollas Date: Tue, 23 Jan 2024 22:31:39 +0000 Subject: [PATCH] docs: fix typo in contextlib --- Doc/library/contextlib.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/contextlib.rst b/Doc/library/contextlib.rst index b73373bc2363fb..73e53aec9cbf1c 100644 --- a/Doc/library/contextlib.rst +++ b/Doc/library/contextlib.rst @@ -185,7 +185,7 @@ Functions and classes provided: .. note:: Most types managing resources support the :term:`context manager` protocol, - which closes *thing* on leaving the :keyword:`with` statment. + which closes *thing* on leaving the :keyword:`with` statement. As such, :func:`!closing` is most useful for third party types that don't support context managers. This example is purely for illustration purposes,