diff options
author | Ned Deily <nad@acm.org> | 2013-04-01 00:06:15 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2013-04-01 00:06:15 (GMT) |
commit | 05bdd853eced8615b3529bc6672823411f83012a (patch) | |
tree | 315a43f66bbef6bc81fe8d7482c1321d529ef603 /Doc/library/contextlib.rst | |
parent | e268196fb0f1b0b0e10af49907a6356db1527d7b (diff) | |
download | cpython-05bdd853eced8615b3529bc6672823411f83012a.zip cpython-05bdd853eced8615b3529bc6672823411f83012a.tar.gz cpython-05bdd853eced8615b3529bc6672823411f83012a.tar.bz2 |
Issue #17586: fix typo in contextlib.rst
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:: |