Skip to content

Commit

Permalink
Fix prompt typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
azhuge233 committed Jun 27, 2023
1 parent c6e4568 commit ce9fa9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ConsoleWhisper/Runner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ internal static class Runner {
Output.WarnR($"Use multithreading will disable user input.\n" +
$"If media file has multiple soundtracks, program will extract the first one, you will NOT be able to choose.\n" +
$"If you are transcribing, make sure to have enough disk space to store the temp .wav file.\n" +
$"Proceed? yes(y)/No(N)): ");
$"Proceed? yes(y)/No(N): ");

var confirm = Console.ReadLine().TrimEnd(Environment.NewLine.ToCharArray());
if (confirm.ToLower() != "y" && confirm.ToLower() != "yes") {
Expand Down

0 comments on commit ce9fa9b

Please sign in to comment.