diff options
author | Thomas Grainger <tagrain@gmail.com> | 2021-10-20 13:51:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-20 13:51:07 (GMT) |
commit | a774285e7d3e63c24dbaaee0b0d9e59ded5c49bf (patch) | |
tree | 48e38b8d0803f0d3dbe8f12b5f4a991fc7358b06 /Doc/library/contextlib.rst | |
parent | 98fa3b53e2aecc5ecec64a921bc9cf4f9d07ac75 (diff) | |
download | cpython-a774285e7d3e63c24dbaaee0b0d9e59ded5c49bf.zip cpython-a774285e7d3e63c24dbaaee0b0d9e59ded5c49bf.tar.gz cpython-a774285e7d3e63c24dbaaee0b0d9e59ded5c49bf.tar.bz2 |
bpo-25625: [doc] fix async/aync typo (GH-29091)
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 ae0ee72..a800a0b 100644 --- a/Doc/library/contextlib.rst +++ b/Doc/library/contextlib.rst @@ -357,7 +357,7 @@ Functions and classes provided: Non parallel-safe context manager to change the current working directory. As this changes a global state, the working directory, it is not suitable - for use in most threaded or aync contexts. It is also not suitable for most + 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 when this context manager is active. |