From: Liam DeVoe Date: Thu, 10 Apr 2025 11:51:20 +0000 (-0400) Subject: Docs: Add a missing trailing full stop (#130561) X-Git-Tag: v3.14.0b1~544 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4a88bbacb38934a7f6c6ba7a7976cbf877dbae21;p=thirdparty%2FPython%2Fcpython.git Docs: Add a missing trailing full stop (#130561) --- 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::