aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorRichard Hansen <rhansen@rhansen.org>2024-11-26 08:05:07 -0500
committerGitHub <noreply@github.com>2024-11-26 15:05:07 +0200
commitab237ff81d2201c70aaacf51f0c033df334e5d07 (patch)
tree2d189cf92389d7b962aaba8b4d5bab65eee1e50e
parent0c1feebf95440e00ffab14ada24c139eaabde628 (diff)
downloadcpython-ab237ff81d2201c70aaacf51f0c033df334e5d07.tar.gz
cpython-ab237ff81d2201c70aaacf51f0c033df334e5d07.zip
Doc: Typo fix: nrace -> race (#127288)
-rw-r--r--Doc/library/concurrent.futures.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/concurrent.futures.rst b/Doc/library/concurrent.futures.rst
index a57120e8810..5a950081a1c 100644
--- a/Doc/library/concurrent.futures.rst
+++ b/Doc/library/concurrent.futures.rst
@@ -252,7 +252,7 @@ This results in several benefits that help balance the extra effort,
including true multi-core parallelism, For example, code written
this way can make it easier to reason about concurrency. Another
major benefit is that you don't have to deal with several of the
-big pain points of using threads, like nrace conditions.
+big pain points of using threads, like race conditions.
Each worker's interpreter is isolated from all the other interpreters.
"Isolated" means each interpreter has its own runtime state and