diff --git a/exercises/threads/threads1.rs b/exercises/threads/threads1.rs index 4bf6aa34..6fa4b19a 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 threads spawned on line 22 are completing jobs while the main thread is +// The idea is the threads spawned on line 20 are completing jobs while the main thread is // monitoring progress until 10 jobs are completed. // I AM NOT DONE