Fix #104
authorLukeMathWalker <20745048+LukeMathWalker@users.noreply.github.com>
Thu, 1 Aug 2024 12:54:25 +0000 (14:54 +0200)
committerLukeMathWalker <20745048+LukeMathWalker@users.noreply.github.com>
Thu, 1 Aug 2024 12:54:25 +0000 (14:54 +0200)
book/src/07_threads/01_threads.md

index 78d87e1..7bcbea9 100644 (file)
@@ -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.