diff --git a/src/concurrency/shared_state.md b/src/concurrency/shared_state.md index 4e5df6b4..bb59b8fe 100644 --- a/src/concurrency/shared_state.md +++ b/src/concurrency/shared_state.md @@ -5,7 +5,7 @@ primarily done via two types: * [`Arc`][1], atomic reference counted `T`: handled sharing between threads and takes care to deallocate `T` when the last thread exits, -* [`Mutex`][2]: ensures mutual exclusion access for some `T` value. +* [`Mutex`][2]: ensures mutual exclusion access to the `T` value. [1]: https://doc.rust-lang.org/std/sync/struct.Arc.html [2]: https://doc.rust-lang.org/std/sync/struct.Mutex.html