diff options
-rw-r--r-- | Doc/library/contextlib.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/contextlib.rst b/Doc/library/contextlib.rst index 11de8b1..810cea8 100644 --- a/Doc/library/contextlib.rst +++ b/Doc/library/contextlib.rst @@ -20,7 +20,7 @@ Functions and classes provided: .. class:: AbstractContextManager - An abstract base class for classes that implement + An :term:`abstract base class` for classes that implement :meth:`object.__enter__` and :meth:`object.__exit__`. A default implementation for :meth:`object.__enter__` is provided which returns ``self`` while :meth:`object.__exit__` is an abstract method which by default |