]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Docs: Add a missing trailing full stop (#130561)
authorLiam DeVoe <orionldevoe@gmail.com>
Thu, 10 Apr 2025 11:51:20 +0000 (07:51 -0400)
committerGitHub <noreply@github.com>
Thu, 10 Apr 2025 11:51:20 +0000 (14:51 +0300)
Doc/library/contextlib.rst

index 9fb80c0cb4e30d1746a638e380dae008e32c54dc..176be4ff33395554f18404e4a1d82ea88c5c2815 100644 (file)
@@ -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::