No more word input

This commit is contained in:
mo8it
2024-05-13 02:37:32 +02:00
parent f9e35a4344
commit d2b5906be2
6 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ fn press_enter_prompt() -> io::Result<()> {
struct Args {
#[command(subcommand)]
command: Option<Subcommands>,
/// Manually run the current exercise using `r` or `run` in the watch mode.
/// Manually run the current exercise using `r` in the watch mode.
/// Only use this if Rustlings fails to detect exercise file changes.
#[arg(long)]
manual_run: bool,
+1 -1
View File
@@ -123,5 +123,5 @@ The automatic detection of exercise file changes failed :(
Please try running `rustlings` again.
If you keep getting this error, run `rustlings --manual-run` to deactivate the file watcher.
You need to manually trigger running the current exercise using `r` (or `run`) then.
You need to manually trigger running the current exercise using `r` then.
";
+1 -1
View File
@@ -127,7 +127,7 @@ impl<'a> WatchState<'a> {
self.writer,
"{}\n",
"Exercise done ✓
When you are done experimenting, enter `n` (or `next`) to move on to the next exercise 🦀"
When you are done experimenting, enter `n` to move on to the next exercise 🦀"
.bold()
.green(),
)?;