From e3d04e0e3b470f3a6e8865c72f1b233190fbfd75 Mon Sep 17 00:00:00 2001 From: Ben Olden-Cooligan Date: Sun, 26 Jan 2025 09:25:58 -0800 Subject: [PATCH] CLI: Fix help text for --delay #536 --- NAPS2.Lib/Automation/AutomatedScanningOptions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NAPS2.Lib/Automation/AutomatedScanningOptions.cs b/NAPS2.Lib/Automation/AutomatedScanningOptions.cs index bb95cdc668..b5bd5c1cd7 100644 --- a/NAPS2.Lib/Automation/AutomatedScanningOptions.cs +++ b/NAPS2.Lib/Automation/AutomatedScanningOptions.cs @@ -39,7 +39,7 @@ public class AutomatedScanningOptions [Option('n', "number", Default = 1, HelpText = "The number of scans to perform.")] public int Number { get; set; } = 1; - [Option('d', "delay", Default = 0, HelpText = "The delay (in milliseconds) between each scan.")] + [Option('d', "delay", Default = 0, HelpText = "The delay (in milliseconds) before each scan.")] public int Delay { get; set; } [Option('f', "force", HelpText = "Overwrite existing files." +