From e9d0e3a35d4e1d7d61e30a6f45b3ed15179627bf Mon Sep 17 00:00:00 2001 From: Martin Geisler Date: Sun, 7 Apr 2024 10:05:02 +0200 Subject: [PATCH] =?UTF-8?q?Rephrase=20slide=20on=20=E2=80=9Cfearless=20con?= =?UTF-8?q?currency=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bullet points makes it looks more like, well, a slide! --- src/concurrency/fearless.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/concurrency/fearless.md b/src/concurrency/fearless.md index 90919021a66..7ead3cc52f1 100644 --- a/src/concurrency/fearless.md +++ b/src/concurrency/fearless.md @@ -1,9 +1,10 @@ # Fearless Concurrency -Rust has great support for concurrency and its powerful type system is able to -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 -at runtime. +Rust has great support for concurrency: + +- The type system is able to prevent many concurrency bugs at compile time. +- This is often referred to as _fearless concurrency_. You can refactor without + fear of introducing concurrency issues.