diff --git a/src/concurrency.md b/src/concurrency.md index 23a084ca..d6bc5e37 100644 --- a/src/concurrency.md +++ b/src/concurrency.md @@ -4,5 +4,5 @@ Rust has full support for concurrency using OS threads with mutexes and channels. The Rust type system plays an important role in making many concurrency bugs -compile time bugs. This is often referred to a _fearless concurrency_ since you +compile time bugs. This is often referred to as _fearless concurrency_ since you can rely on the compiler to ensure correctness at runtime.