]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-25625: [doc] fix async/aync typo (GH-29091)
authorThomas Grainger <tagrain@gmail.com>
Wed, 20 Oct 2021 13:51:07 +0000 (14:51 +0100)
committerGitHub <noreply@github.com>
Wed, 20 Oct 2021 13:51:07 +0000 (15:51 +0200)
Doc/library/contextlib.rst

index ae0ee7232a10c5109052211992de15951b3191cd..a800a0b8dee4b8ae2d826f4036030e98acb703ae 100644 (file)
@@ -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.