diff options
| author | marisa <mokou@fastmail.com> | 2021-04-24 11:46:25 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-24 11:46:25 +0200 |
| commit | 3cddda56fc1e1eff84f4aa7b61cba4f1db9b723e (patch) | |
| tree | 04db6539612959bea95e323d5cebdb4309249c5e | |
| parent | 37f3069a6710dc6572d3f8952f3d7c077f6955f1 (diff) | |
| parent | cf42ddc4497a2577e8c8e9206523322b3a2b9fc2 (diff) | |
Merge pull request #725 from Zerotask/add-hint-corresponding-readme
chore(watch): add hint for the exercises README.md
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index a95a09d..bc1b71e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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) { |
