Skip to content

Commit cf42ddc

Browse files
committed
chore(watch): add hint for the exercises README.md
rustlings watch will now show an additional hint for the corresponding README.me
1 parent 54804e3 commit cf42ddc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ fn main() {
264264

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

0 commit comments

Comments
 (0)