summaryrefslogtreecommitdiff
path: root/exercises/vecs/vecs2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/vecs/vecs2.rs')
-rw-r--r--exercises/vecs/vecs2.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/exercises/vecs/vecs2.rs b/exercises/vecs/vecs2.rs
index 1ea2607..e92c970 100644
--- a/exercises/vecs/vecs2.rs
+++ b/exercises/vecs/vecs2.rs
@@ -1,6 +1,7 @@
// vecs2.rs
-// A Vec of even numbers is given. Your task is to complete the loop
-// so that each number in the Vec is multiplied by 2.
+//
+// A Vec of even numbers is given. Your task is to complete the loop so that
+// each number in the Vec is multiplied by 2.
//
// Make me pass the test!
//