summaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorapogeeoak <59737221+apogeeoak@users.noreply.github.com>2021-04-24 12:42:06 -0400
committerapogeeoak <59737221+apogeeoak@users.noreply.github.com>2021-04-24 12:42:06 -0400
commit7f0d2c2bf011838d77fc05f111aacf2b0a663f5c (patch)
treeb132be94f23c7984fb6271ff7ab9ec7b8256fd11 /exercises
parent6b6dc9dd48ed0f97be02263ee45267af361fd029 (diff)
chore(iterators5): Minor formatting improvements.
Diffstat (limited to 'exercises')
-rw-r--r--exercises/standard_library_types/iterators5.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/exercises/standard_library_types/iterators5.rs b/exercises/standard_library_types/iterators5.rs
index 2d97bd4..6e246b4 100644
--- a/exercises/standard_library_types/iterators5.rs
+++ b/exercises/standard_library_types/iterators5.rs
@@ -1,5 +1,4 @@
// iterators5.rs
-
// Let's define a simple model to track Rustlings exercise progress. Progress
// will be modelled using a hash map. The name of the exercise is the key and
// the progress is the value. Two counting functions were created to count the
@@ -7,8 +6,7 @@
// imperative style for loops. Recreate this counting functionality using
// iterators. Only the two iterator methods (count_iterator and
// count_collection_iterator) need to be modified.
-// Execute `rustlings hint
-// iterators5` for hints.
+// Execute `rustlings hint iterators5` for hints.
//
// Make the code compile and the tests pass.