From: LukeMathWalker <20745048+LukeMathWalker@users.noreply.github.com> Date: Thu, 1 Aug 2024 12:54:25 +0000 (+0200) Subject: Fix #104 X-Git-Url: http://git.euphorik.ch/index.cgi?a=commitdiff_plain;h=2f067058ce643d1b76d6bd0b5e581add3a122bb4;p=rust_exercises.git Fix #104 --- 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.