From 1cd661997c9773ea0d7fca440a3b5a27012a2905 Mon Sep 17 00:00:00 2001 From: Donald Guy Date: Tue, 4 May 2021 21:25:48 -0400 Subject: [PATCH] Fix referenced line number --- exercises/threads/threads1.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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