diff options
| -rw-r--r-- | exercises/03_if/if2.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/03_if/if2.rs b/exercises/03_if/if2.rs index 10037f2..ca8493c 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!"); } |
