diff options
author | luzpaz <luzpaz@users.noreply.github.com> | 2022-06-21 19:10:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-21 19:10:45 (GMT) |
commit | 830513754d081619b2d72db17770627312072fa5 (patch) | |
tree | 6cedb4923e174bf2611faa1b5e74a8016f12bbb6 /Doc/library/contextlib.rst | |
parent | f62ff97f31a775cc7956adeae32c14e7c85bdc15 (diff) | |
download | cpython-830513754d081619b2d72db17770627312072fa5.zip cpython-830513754d081619b2d72db17770627312072fa5.tar.gz cpython-830513754d081619b2d72db17770627312072fa5.tar.bz2 |
gh-93675: Fix typos in `Doc/` (GH-93676)
Closes #93675
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 84c4ca0..2d28fb3 100644 --- a/Doc/library/contextlib.rst +++ b/Doc/library/contextlib.rst @@ -361,7 +361,7 @@ Functions and classes provided: As this changes a global state, the working directory, it is not suitable for use in most threaded or async contexts. It is also not suitable for most non-linear code execution, like generators, where the program execution is - temporarily relinquished -- unless explicitely desired, you should not yield + temporarily relinquished -- unless explicitly desired, you should not yield when this context manager is active. This is a simple wrapper around :func:`~os.chdir`, it changes the current |