summaryrefslogtreecommitdiff
path: root/exercises/threads/threads1.rs
diff options
context:
space:
mode:
authorRoberto Vidal <vidal.roberto.j@gmail.com>2019-11-14 08:20:38 +0100
committerRoberto Vidal <vidal.roberto.j@gmail.com>2019-11-14 08:21:56 +0100
commitb565c4d3e74e8e110bef201a082fa1302722a7c3 (patch)
treeef776a3ddee5a27c6c80332b213ec777b99b3fb2 /exercises/threads/threads1.rs
parente9a835c1c01dacdb017774f8fb5de22c86602db5 (diff)
fix: line numbers in several exercises and hints
The introduction of `I AM NOT DONE` shifted the lines of all exercises, which now need adjustment.
Diffstat (limited to 'exercises/threads/threads1.rs')
-rw-r--r--exercises/threads/threads1.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/threads/threads1.rs b/exercises/threads/threads1.rs
index 288ddd1..1785e8c 100644
--- a/exercises/threads/threads1.rs
+++ b/exercises/threads/threads1.rs
@@ -1,6 +1,6 @@
// threads1.rs
// Make this compile! Execute `rustlings hint threads1` for hints :)
-// The idea is the thread spawned on line 19 is completing jobs while the main thread is
+// The idea is the thread spawned on line 21 is completing jobs while the main thread is
// monitoring progress until 10 jobs are completed. If you see 6 lines
// of "waiting..." and the program ends without timing out when running,
// you've got it :)