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 +}