From 09aabdea6521dbcbe7df5337f15d5a0e095e28a8 Mon Sep 17 00:00:00 2001 From: Remo Senekowitsch Date: Sun, 9 Aug 2026 14:04:16 +0200 Subject: [PATCH] async1: remove redundant TODO comment --- exercises/24_async/async1.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/exercises/24_async/async1.rs b/exercises/24_async/async1.rs index 01183920..c57efbed 100644 --- a/exercises/24_async/async1.rs +++ b/exercises/24_async/async1.rs @@ -11,7 +11,6 @@ // The macro `tokio::main` wraps the entire main function in a runtime. #[tokio::main] async fn main() { - // TODO: Fix the compiler errors by making the spawned function async. let mean_score_a = tokio::spawn(calculate_mean_score("input_files/scores_class_a.txt")); let mean_score_b = tokio::spawn(calculate_mean_score("input_files/scores_class_b.txt")); let mean_score_c = tokio::spawn(calculate_mean_score("input_files/scores_class_c.txt"));