From 5eb2c615a776646b6284636fc8630c45b2605f96 Mon Sep 17 00:00:00 2001 From: grayjk <2437532+grayjk@users.noreply.github.com> Date: Tue, 1 Sep 2026 13:30:02 -0400 Subject: [PATCH] Fix typos in the `concurrent.interpreters` docs (GH-156485) (cherry picked from commit 76fefef9248c6e9578ac4125b3194b5fdab7902c) Co-authored-by: grayjk <2437532+grayjk@users.noreply.github.com> --- Doc/library/concurrent.interpreters.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/concurrent.interpreters.rst b/Doc/library/concurrent.interpreters.rst index 24e9eaea5cad4b3..2c509ab13a6acfd 100644 --- a/Doc/library/concurrent.interpreters.rst +++ b/Doc/library/concurrent.interpreters.rst @@ -191,7 +191,7 @@ objects are either directly shared or copied efficiently. For example: * :class:`float` * :class:`tuple` (of similarly supported objects) -There is a small number of Python types that actually share mutable +There are a small number of Python types that actually share mutable data between interpreters: * :class:`memoryview` @@ -274,7 +274,7 @@ Interpreter objects .. method:: call(callable, /, *args, **kwargs) - Return the result of calling running the given function in the + Return the result of running the given function in the interpreter (in the current thread). .. _interp-call-in-thread: