Skip to content

Commit 115e530

Browse files
committed
Correct term spelling
1 parent 43310ed commit 115e530

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Doc/library/threading.rst

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,8 @@ threading when it comes to CPU-bound tasks, as only one thread can execute
6565
Python bytecode at a time. Despite this, threads remain a useful tool for
6666
achieving concurrency in many scenarios.
6767

68-
*(Experimental free-threaded builds of CPython disable the :term:`GIL`,
69-
enabling true parallel execution of threads, but this feature is still under
70-
development.)*
68+
*(Experimental free-threaded builds of CPython disable the GIL, enabling true
69+
parallel execution of threads, but this feature is still under development.)*
7170

7271
A typical use case for :mod:`threading` includes managing a pool of worker
7372
threads that can process multiple tasks concurrently. This basic example of

0 commit comments

Comments
 (0)