summaryrefslogtreecommitdiff
path: root/exercises/threads/threads1.rs
diff options
context:
space:
mode:
authormokou <mokou@fastmail.com>2022-07-15 11:59:53 +0200
committermokou <mokou@fastmail.com>2022-07-15 11:59:53 +0200
commitf99eafc56f49852d4b801b5c4cfedf47ef4968ae (patch)
tree2316e5593ed51d2f65287e96e72f0c5eed5bd46c /exercises/threads/threads1.rs
parentb4f52cb937e9f2b90913402964ae014240705a5f (diff)
fix(threads): add hint comments
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 ddb6155..e59f4ce 100644
--- a/exercises/threads/threads1.rs
+++ b/exercises/threads/threads1.rs
@@ -1,5 +1,5 @@
// threads1.rs
-// Make this compile and run! Execute 'rustlings hint threads1' for hints :)
+// Execute `rustlings hint threads1` or use the `hint` watch subcommand for a hint.
// This program should wait until all the spawned threads have finished before exiting.
// I AM NOT DONE