summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2013-04-01 00:06:15 (GMT)
committerNed Deily <nad@acm.org>2013-04-01 00:06:15 (GMT)
commit05bdd853eced8615b3529bc6672823411f83012a (patch)
tree315a43f66bbef6bc81fe8d7482c1321d529ef603
parente268196fb0f1b0b0e10af49907a6356db1527d7b (diff)
downloadcpython-05bdd853eced8615b3529bc6672823411f83012a.zip
cpython-05bdd853eced8615b3529bc6672823411f83012a.tar.gz
cpython-05bdd853eced8615b3529bc6672823411f83012a.tar.bz2
Issue #17586: fix typo in contextlib.rst
-rw-r--r--Doc/library/contextlib.rst2
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::