From 040edda58310e3290aecca89c91fcdddaaa39d4d Mon Sep 17 00:00:00 2001 From: n1net4il Date: Mon, 23 Oct 2023 02:04:04 +0000 Subject: [PATCH] fix typo in src/assignments/assignment07/small_exercises.rs --- src/assignments/assignment07/small_exercises.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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() }