diff --git a/exercises/09_strings/strings2.rs b/exercises/09_strings/strings2.rs index 93d9cb6b..58144339 100644 --- a/exercises/09_strings/strings2.rs +++ b/exercises/09_strings/strings2.rs @@ -1,4 +1,4 @@ -// TODO: Fix the compiler error in the `main` function without changing this function. +// TODO: Fix the compiler error in the `main` function without changing the `is_a_color_word` function. fn is_a_color_word(attempt: &str) -> bool { attempt == "green" || attempt == "blue" || attempt == "red" }