Skip to content

Commit

Permalink
fix(iterators1): reorder TODO steps
Browse files Browse the repository at this point in the history
Update the TODO steps in the iterators1 exercise.
  • Loading branch information
ihaveint committed Mar 30, 2022
1 parent bdf6efe commit 0bd7a06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exercises/standard_library_types/iterators1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ fn main () {
assert_eq!(my_iterable_fav_fruits.next(), Some(&"banana"));
assert_eq!(my_iterable_fav_fruits.next(), ???); // TODO: Step 2
assert_eq!(my_iterable_fav_fruits.next(), Some(&"avocado"));
assert_eq!(my_iterable_fav_fruits.next(), ???); // TODO: Step 2.1
assert_eq!(my_iterable_fav_fruits.next(), Some(&"raspberry"));
assert_eq!(my_iterable_fav_fruits.next(), ???); // TODO: Step 3
assert_eq!(my_iterable_fav_fruits.next(), Some(&"raspberry"));
assert_eq!(my_iterable_fav_fruits.next(), ???); // TODO: Step 4
}

0 comments on commit 0bd7a06

Please sign in to comment.