From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Thu, 10 Apr 2025 11:57:40 +0000 (+0200) Subject: [3.13] Docs: Add a missing trailing full stop (GH-130561) (#132358) X-Git-Tag: v3.13.4~303 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8e017f2f4801a4884d05926b494f40be2f552e9e;p=thirdparty%2FPython%2Fcpython.git [3.13] Docs: Add a missing trailing full stop (GH-130561) (#132358) Co-authored-by: Liam DeVoe --- 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::