Skip to content

Commit

Permalink
CLI: Fix help text for --delay
Browse files Browse the repository at this point in the history
  • Loading branch information
cyanfish committed Jan 26, 2025
1 parent 50260d3 commit e3d04e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NAPS2.Lib/Automation/AutomatedScanningOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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." +
Expand Down

0 comments on commit e3d04e0

Please sign in to comment.