From: Richard Hansen Date: Tue, 26 Nov 2024 13:05:07 +0000 (-0500) Subject: Doc: Typo fix: nrace -> race (#127288) X-Git-Tag: v3.14.0a3~200 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ab237ff81d2201c70aaacf51f0c033df334e5d07;p=thirdparty%2FPython%2Fcpython.git Doc: Typo fix: nrace -> race (#127288) --- diff --git a/Doc/library/concurrent.futures.rst b/Doc/library/concurrent.futures.rst index a57120e88103..5a950081a1c9 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