chore(watch): add hint for the exercises README.md

rustlings watch will now show an additional hint for the corresponding README.me
This commit is contained in:
Zerotask 2021-04-23 20:28:55 +02:00
parent 54804e344d
commit cf42ddc449
No known key found for this signature in database
GPG Key ID: 1C87F67E23FCB283
1 changed files with 1 additions and 1 deletions

View File

@ -264,7 +264,7 @@ fn main() {
fn spawn_watch_shell(failed_exercise_hint: &Arc<Mutex<Option<String>>>) {
let failed_exercise_hint = Arc::clone(failed_exercise_hint);
println!("Type 'hint' to get help or 'clear' to clear the screen");
println!("Type 'hint' or open the corresponding README.md file to get help or type 'clear' to clear the screen.");
thread::spawn(move || loop {
let mut input = String::new();
match io::stdin().read_line(&mut input) {