1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-03-21 22:49:44 +02:00

Merge pull request from jswalden/patch-3

Typo in "Fearless Concurrency" intro
This commit is contained in:
Martin Geisler 2022-12-31 12:27:00 +01:00 committed by GitHub
commit 8a8f44b568
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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.