From 2fefb8289cdb5e635fcaaa6cb340bea567129107 Mon Sep 17 00:00:00 2001 From: Aniket Maurya Date: Sun, 22 Dec 2024 13:37:08 +0000 Subject: [PATCH] fix typo --- exercises/01_intro/01_syntax/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/01_intro/01_syntax/src/lib.rs b/exercises/01_intro/01_syntax/src/lib.rs index 676d81b..7b28ece 100644 --- a/exercises/01_intro/01_syntax/src/lib.rs +++ b/exercises/01_intro/01_syntax/src/lib.rs @@ -1,5 +1,5 @@ // TODO: fix the function signature below to make the tests pass. -// Make sure to read the compiler error message—the Rust compiler is your pair programming +// Make sure to read the compiler error message—the Rust compiler is your pair programmer // partner in this course and it'll often guide you in the right direction! // // The input parameters should have the same type of the return type. @@ -16,4 +16,4 @@ mod tests { fn case() { assert_eq!(compute(1, 2), 5); } -} \ No newline at end of file +}