From: Ned Deily Date: Mon, 1 Apr 2013 00:06:15 +0000 (-0700) Subject: Issue #17586: fix typo in contextlib.rst X-Git-Tag: v3.4.0a1~1055 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=05bdd853eced8615b3529bc6672823411f83012a;p=python Issue #17586: fix typo in contextlib.rst --- diff --git a/Doc/library/contextlib.rst b/Doc/library/contextlib.rst index 5355c94d43..f18c100533 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::