summaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorChristian Zeller <chrizel@posteo.de>2021-01-06 13:47:20 +0100
committerGitHub <noreply@github.com>2021-01-06 13:47:20 +0100
commit7857b0a689b0847f48d8c14cbd1865e3b812d5ca (patch)
treee6dfe11d1a00038934fc8d688d1e6faf23941d41 /exercises
parent10965920fbdf8a1efc85bed869e55a1787006404 (diff)
fix(threads1): line number correction
Diffstat (limited to 'exercises')
-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 b475b4a..f31b317 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 21 is completing jobs while the main thread is
+// The idea is the thread spawned on line 22 is completing jobs while the main thread is
// monitoring progress until 10 jobs are completed. Because of the difference between the
// spawned threads' sleep time, and the waiting threads sleep time, when you see 6 lines
// of "waiting..." and the program ends without timing out when running,