diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2012-05-31 12:34:59 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2012-05-31 12:34:59 (GMT) |
commit | b7a455f326b903c20b54b9aa3b9fbb83c6897fc3 (patch) | |
tree | 0a60bf352e410b7281ec8ba1c72818b11dba0098 | |
parent | 272282707153ef18a1f57f962590945fe338d820 (diff) | |
download | cpython-b7a455f326b903c20b54b9aa3b9fbb83c6897fc3.zip cpython-b7a455f326b903c20b54b9aa3b9fbb83c6897fc3.tar.gz cpython-b7a455f326b903c20b54b9aa3b9fbb83c6897fc3.tar.bz2 |
Typo fix
-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 527032d..ed9ebb8 100644 --- a/Doc/library/contextlib.rst +++ b/Doc/library/contextlib.rst @@ -308,7 +308,7 @@ Simplifying support for single optional context managers In the specific case of a single optional context manager, :class:`ExitStack` instances can be used as a "do nothing" context manager, allowing a context -managers to easily be omitted without affecting the overall structure of +manager to easily be omitted without affecting the overall structure of the source code:: def debug_trace(details): |