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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=05bdd853eced8615b3529bc6672823411f83012a;p=thirdparty%2FPython%2Fcpython.git Issue #17586: fix typo in contextlib.rst --- diff --git a/Doc/library/contextlib.rst b/Doc/library/contextlib.rst index 5355c94d43e1..f18c10053318 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::