Compare commits

..

3 commits

Author SHA1 Message Date
Kim Hokyeong a944fc73f4
Merge 275071b740 into 26cf4989a2 2024-12-14 06:40:14 +09:00
Mo 26cf4989a2
Merge pull request #2173 from JoelMarcey/if2-comment-fix
Fix argument comment in test of if2.rs
2024-12-13 19:48:16 +01:00
Joel Marcey 6e60f441e9
Fix argument comment in test of if2.rs 2024-12-13 10:44:21 -08:00

View file

@ -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!");
}