1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-06-15 22:00:26 +02:00

Rephrase slide on “fearless concurrency”

Bullet points makes it looks more like, well, a slide!
This commit is contained in:
Martin Geisler
2024-04-07 10:05:02 +02:00
parent c506af41e8
commit 9412254832

View File

@ -1,9 +1,10 @@
# Fearless Concurrency # Fearless Concurrency
Rust has great support for concurrency and its powerful type system is able to Rust has great support for concurrency:
prevent many concurrency bugs at compile time. This is often referred to as
_fearless concurrency_ since you can rely on the compiler to ensure correctness - The type system is able to prevent many concurrency bugs at compile time.
at runtime. - This is often referred to as _fearless concurrency_. You can refactor without
fear of introducing concurrency issues.
<details> <details>