summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEddy Petrisor <eddy.petrisor@gmail.com>2019-05-22 14:48:19 +0300
committerEddy Petrisor <eddy.petrisor@gmail.com>2019-05-22 14:50:40 +0300
commita53b3f199f80757a4052e84510afe0aa49ca8e2d (patch)
tree74e3fff7e592ad39300e64c6119bda6e1f11abff
parentd6d696b66a91d0124b1757c666d94ce018e0c514 (diff)
iterator3.rs: whitespace fixes
Signed-off-by: Eddy Petrisor <eddy.petrisor@gmail.com>
-rw-r--r--exercises/standard_library_types/iterator3.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/exercises/standard_library_types/iterator3.rs b/exercises/standard_library_types/iterator3.rs
index 1d2e135..083c0af 100644
--- a/exercises/standard_library_types/iterator3.rs
+++ b/exercises/standard_library_types/iterator3.rs
@@ -114,7 +114,7 @@ mod tests {
-// Minor hint: In each of the two cases in the match in main, you can create x with either
+// Minor hint: In each of the two cases in the match in main, you can create x with either
// a 'turbofish' or by hinting the type of x to the compiler. You may try both.
@@ -143,5 +143,5 @@ mod tests {
-// Major hint: Have a look at the Iter trait and at the explanation of its collect function.
+// Major hint: Have a look at the Iter trait and at the explanation of its collect function.
// Especially the part about Result is interesting.