From ce9fa9b68d5ab60106b53bc698fdc46f182d54b7 Mon Sep 17 00:00:00 2001 From: azhuge233 <17763056+azhuge233@users.noreply.github.com> Date: Tue, 27 Jun 2023 23:26:47 +0800 Subject: [PATCH] Fix prompt typo. --- ConsoleWhisper/Runner.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ConsoleWhisper/Runner.cs b/ConsoleWhisper/Runner.cs index f00bce6..8412d57 100644 --- a/ConsoleWhisper/Runner.cs +++ b/ConsoleWhisper/Runner.cs @@ -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") {