From 5f9718cd2e359d823ee57015c8bce0608510b96d Mon Sep 17 00:00:00 2001 From: Remo Senekowitsch Date: Sat, 25 Apr 2026 15:06:27 +0200 Subject: [PATCH] Refer to tokio as "mainstream" instead of "popular" --- exercises/24_async/README.md | 2 +- exercises/24_async/async1.rs | 2 +- solutions/24_async/async1.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/exercises/24_async/README.md b/exercises/24_async/README.md index 7928650e..4e61bc32 100644 --- a/exercises/24_async/README.md +++ b/exercises/24_async/README.md @@ -5,7 +5,7 @@ It is particularly efficient for applications where many independent IO-operatio Rust provides the necessary primitives to do asynchronous programming in the language. However, Rust's standard library does not include a runtime. -For these exercises, we will use the popular runtime called `tokio`. +For these exercises, we will use the mainstream runtime called `tokio`. ## Further information diff --git a/exercises/24_async/async1.rs b/exercises/24_async/async1.rs index 5810ced3..40d71bc0 100644 --- a/exercises/24_async/async1.rs +++ b/exercises/24_async/async1.rs @@ -13,7 +13,7 @@ static CHORES_DONE: AtomicU8 = AtomicU8::new(0); fn main() { // Async tasks need to be executed by a "runtime", which is not provided by - // Rust's standard library. We use the popular "tokio" runtime here. + // Rust's standard library. Here, we use the mainstream runtime `tokio`. let rt = tokio::runtime::Builder::new_current_thread() .build() .unwrap(); diff --git a/solutions/24_async/async1.rs b/solutions/24_async/async1.rs index a897067a..ae9e0c37 100644 --- a/solutions/24_async/async1.rs +++ b/solutions/24_async/async1.rs @@ -13,7 +13,7 @@ static CHORES_DONE: AtomicU8 = AtomicU8::new(0); fn main() { // Async tasks need to be executed by a "runtime", which is not provided by - // Rust's standard library. We use the popular "tokio" runtime here. + // Rust's standard library. Here, we use the mainstream runtime `tokio`. let rt = tokio::runtime::Builder::new_current_thread() .build() .unwrap();