diff options
Diffstat (limited to 'Doc/library/contextlib.rst')
-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 5355c94..f18c100 100644 --- a/Doc/library/contextlib.rst +++ b/Doc/library/contextlib.rst @@ -96,7 +96,7 @@ Functions and classes provided: .. function:: ignored(*exceptions) - Return a context manager that ignores the specified expections if they + Return a context manager that ignores the specified exceptions if they occur in the body of a with-statement. For example:: |