From 4a88bbacb38934a7f6c6ba7a7976cbf877dbae21 Mon Sep 17 00:00:00 2001 From: Liam DeVoe Date: Thu, 10 Apr 2025 07:51:20 -0400 Subject: [PATCH] Docs: Add a missing trailing full stop (#130561) --- 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 9fb80c0cb4e3..176be4ff3339 100644 --- a/Doc/library/contextlib.rst +++ b/Doc/library/contextlib.rst @@ -49,7 +49,7 @@ Functions and classes provided: While many objects natively support use in with statements, sometimes a resource needs to be managed that isn't a context manager in its own right, - and doesn't implement a ``close()`` method for use with ``contextlib.closing`` + and doesn't implement a ``close()`` method for use with ``contextlib.closing``. An abstract example would be the following to ensure correct resource management:: -- 2.47.3