From f76dedace74ca98f6f15ddf3ab4177d6d77af0a8 Mon Sep 17 00:00:00 2001 From: Thomas Grainger Date: Wed, 20 Oct 2021 14:29:06 +0100 Subject: [PATCH] fix async/aync typo --- Doc/library/contextlib.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/contextlib.rst b/Doc/library/contextlib.rst index ae0ee7232a10c5..a800a0b8dee4b8 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.