[Python-checkins] bpo-25625: [doc] fix async/aync typo (GH-29091)

ambv webhook-mailer at python.org
Wed Oct 20 09:51:12 EDT 2021


https://github.com/python/cpython/commit/a774285e7d3e63c24dbaaee0b0d9e59ded5c49bf
commit: a774285e7d3e63c24dbaaee0b0d9e59ded5c49bf
branch: main
author: Thomas Grainger <tagrain at gmail.com>
committer: ambv <lukasz at langa.pl>
date: 2021-10-20T15:51:07+02:00
summary:

bpo-25625: [doc] fix async/aync typo (GH-29091)

files:
M Doc/library/contextlib.rst

diff --git a/Doc/library/contextlib.rst b/Doc/library/contextlib.rst
index ae0ee7232a10c..a800a0b8dee4b 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.



More information about the Python-checkins mailing list