Update ui.rs yes/NO

Signed-off-by: pepa65 <pepa65@passchier.net>
This commit is contained in:
pepa65 2024-10-30 12:11:26 +07:00 committed by GitHub
parent e704abe7ac
commit 0710a7ffb0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -10,7 +10,7 @@ fn ask_for_confirm(stdin: &mut StdinLock, input: &mut String) -> io::Result<()>
{ {
let mut stdout = io::stdout().lock(); let mut stdout = io::stdout().lock();
write!(&mut stdout, "Do you wish to continue? yes/[no]\n? ")?; write!(&mut stdout, "Do you wish to continue? yes/NO? ")?;
stdout.flush()?; stdout.flush()?;
} }