]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] Docs: Add a missing trailing full stop (GH-130561) (#132358)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 10 Apr 2025 11:57:40 +0000 (13:57 +0200)
committerGitHub <noreply@github.com>
Thu, 10 Apr 2025 11:57:40 +0000 (11:57 +0000)
Co-authored-by: Liam DeVoe <orionldevoe@gmail.com>
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::