We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 729b7d5 commit 49ad4aeCopy full SHA for 49ad4ae
Doc/library/threading.rst
@@ -23,7 +23,7 @@ bypass the :term:`Global Interpreter Lock <global interpreter lock>`, the
23
threading module operates within a single process, meaning that all threads
24
share the same memory space. However, the :term:`GIL` limits the performance gains of
25
threading when it comes to CPU-bound tasks, as only one thread can execute
26
-Python bytecode at a time. Despite this, threading remains a useful tool for
+Python bytecode at a time. Despite this, threads remain a useful tool for
27
achieving concurrency in many scenarios.
28
29
A typical use case for :mod:`threading` includes managing a pool of worker
0 commit comments