diff --git a/Doc/library/contextlib.rst b/Doc/library/contextlib.rst index cfc37a63aed..f87ee210550 100644 --- a/Doc/library/contextlib.rst +++ b/Doc/library/contextlib.rst @@ -191,7 +191,7 @@ Functions and classes provided: .. function:: suppress(*exceptions) Return a context manager that suppresses any of the specified exceptions - if they are raised in the body of a :keyword:`!with` statement and then + if they occur in the body of a :keyword:`!with` statement and then resumes execution with the first statement following the end of the :keyword:`!with` statement.