From 84c98c0601abbd54ebf4a5713c71bd37e04c7fa7 Mon Sep 17 00:00:00 2001 From: akshatcoder-hash Date: Sun, 6 Apr 2025 21:21:09 +0530 Subject: [PATCH] feat: clarified the comment --- exercises/09_strings/strings2.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/exercises/09_strings/strings2.rs b/exercises/09_strings/strings2.rs index 93d9cb6b7f..b6d83fb4f4 100644 --- a/exercises/09_strings/strings2.rs +++ b/exercises/09_strings/strings2.rs @@ -1,4 +1,5 @@ // TODO: Fix the compiler error in the `main` function without changing this function. + fn is_a_color_word(attempt: &str) -> bool { attempt == "green" || attempt == "blue" || attempt == "red" }