We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0785b24 commit 4ce8667Copy full SHA for 4ce8667
src/watch/state.rs
@@ -51,8 +51,11 @@ impl<'a> WatchState<'a> {
51
pub fn run_current_exercise(&mut self) -> Result<()> {
52
self.show_hint = false;
53
54
- self.writer
55
- .write_all(b"\nChecking the exercise, please wait...")?;
+ writeln!(
+ self.writer,
56
+ "\nChecking the exercise `{}`. Please wait…",
57
+ self.app_state.current_exercise().name,
58
+ )?;
59
let success = self
60
.app_state
61
.current_exercise()
0 commit comments