Fix referenced line number

This commit is contained in:
Donald Guy 2021-05-04 21:25:48 -04:00 committed by GitHub
parent 791120c0c1
commit 1cd661997c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
// threads1.rs // threads1.rs
// Make this compile! Execute `rustlings hint threads1` for hints :) // 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. // monitoring progress until 10 jobs are completed.
// I AM NOT DONE // I AM NOT DONE