diff --git a/src/assignments/assignment07/small_exercises.rs b/src/assignments/assignment07/small_exercises.rs index 74f8ee7..e3fd530 100644 --- a/src/assignments/assignment07/small_exercises.rs +++ b/src/assignments/assignment07/small_exercises.rs @@ -52,7 +52,7 @@ pub fn fib(first: T, second: T) -> impl Iterator where T: std::ops::Add + Copy, { - todo!("replace `std::iter::empty() with your owm implementation`"); + todo!("replace `std::iter::empty() with your own implementation`"); std::iter::empty() } @@ -86,7 +86,7 @@ impl Iterator for RangeIter { /// Returns an iterator over the range [left, right) with the given step. pub fn range(left: Endpoint, right: Endpoint, step: isize) -> impl Iterator { - todo!("replace `std::iter::empty() with your owm implementation`"); + todo!("replace `std::iter::empty() with your own implementation`"); std::iter::empty() }