From 947c138c316f21c386bb6dbf6a44f43792436519 Mon Sep 17 00:00:00 2001 From: Richard Hansen Date: Tue, 26 Nov 2024 03:25:25 -0500 Subject: [PATCH] Doc: Typo fix: nrace -> race --- Doc/library/concurrent.futures.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/concurrent.futures.rst b/Doc/library/concurrent.futures.rst index a57120e88103de..5a950081a1c98d 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