From 6e60f441e9e93e7ebc3dc0072de7eaef8052931d Mon Sep 17 00:00:00 2001 From: Joel Marcey Date: Fri, 13 Dec 2024 10:44:21 -0800 Subject: [PATCH] Fix argument comment in test of if2.rs --- exercises/03_if/if2.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/03_if/if2.rs b/exercises/03_if/if2.rs index 10037f26..ca8493cc 100644 --- a/exercises/03_if/if2.rs +++ b/exercises/03_if/if2.rs @@ -19,7 +19,7 @@ mod tests { #[test] fn yummy_food() { - // This means that calling `picky_eater` with the argument "food" should return "Yummy!". + // This means that calling `picky_eater` with the argument "strawberry" should return "Yummy!". assert_eq!(picky_eater("strawberry"), "Yummy!"); }