From 3e66a028c466356b7107d89f1cd6a8c8a9db465a Mon Sep 17 00:00:00 2001
From: "Peter C. Norton" <spacey-github.com@ssr.com>
Date: Sat, 28 Nov 2020 11:04:54 -0500
Subject: [PATCH] The magic number 6 is given a bit more context

---
 exercises/threads/threads1.rs | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/exercises/threads/threads1.rs b/exercises/threads/threads1.rs
index 1785e8c..b475b4a 100644
--- a/exercises/threads/threads1.rs
+++ b/exercises/threads/threads1.rs
@@ -1,7 +1,8 @@
 // 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
-// monitoring progress until 10 jobs are completed. If you see 6 lines
+// 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,
 // you've got it :)