Skip to content

Commit dcfe231

Browse files
Update Doc/library/threading.rst
Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
1 parent 115e530 commit dcfe231

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Doc/library/threading.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ The :mod:`threading` module provides a way to run multiple threads (smaller
5454
units of a process) concurrently within a single process. It allows for the
5555
creation and management of threads, making it possible to execute tasks in
5656
parallel, sharing memory space. Threads are particularly useful when tasks are
57-
I/O-bound, such as reading from or writing to files, or making network requests,
57+
I/O-bound, such as file operations or making network requests,
5858
where much of the time is spent waiting for external resources.
5959

6060
Unlike the :mod:`multiprocessing` module, which uses separate processes to

0 commit comments

Comments
 (0)