fix: remove trailing whitespaces from iterators1

This commit is contained in:
Juan Pablo Ramirez 2021-05-12 10:20:07 -05:00
parent 3145794084
commit 4d4fa77459
1 changed files with 3 additions and 3 deletions

View File

@ -1,11 +1,11 @@
// iterators1.rs // iterators1.rs
// //
// Make me compile by filling in the `???`s // Make me compile by filling in the `???`s
// //
// When performing operations on elements within a collection, iterators are essential. // When performing operations on elements within a collection, iterators are essential.
// This module helps you get familiar with the structure of using an iterator and // This module helps you get familiar with the structure of using an iterator and
// how to go through elements within an iterable collection. // how to go through elements within an iterable collection.
// //
// Execute `rustlings hint iterators1` for hints :D // Execute `rustlings hint iterators1` for hints :D
// I AM NOT DONE // I AM NOT DONE