From 2f067058ce643d1b76d6bd0b5e581add3a122bb4 Mon Sep 17 00:00:00 2001 From: LukeMathWalker <20745048+LukeMathWalker@users.noreply.github.com> Date: Thu, 1 Aug 2024 14:54:25 +0200 Subject: [PATCH] Fix #104 --- book/src/07_threads/01_threads.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/src/07_threads/01_threads.md b/book/src/07_threads/01_threads.md index 78d87e1..7bcbea9 100644 --- a/book/src/07_threads/01_threads.md +++ b/book/src/07_threads/01_threads.md @@ -6,7 +6,7 @@ and why we might want to use them. ## What is a thread? A **thread** is an execution context managed by the underlying operating system.\ -Each thread has its own stack, instruction pointer, and program counter. +Each thread has its own stack and instruction pointer. A single **process** can manage multiple threads. These threads share the same memory space, which means they can access the same data. -- 2.45.2