style: reword --recursive flag description

This commit is contained in:
Oliver Booth 2024-04-17 16:09:25 +01:00
parent dd683c2bf3
commit 01e06a46cf
Signed by: oliverbooth
GPG Key ID: E60B570D1B7557B5
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ internal sealed class ListSettings : CommandSettings
public string InputPath { get; set; } = ".";
[CommandOption("-r|--recursive")]
[Description("When this flag is set, the directory will be scanned recursively. This may take longer.")]
[Description("Scans the directory recursively. This may increase run time and is not advised to use when at high order directories such as C: or /")]
[DefaultValue(false)]
public bool Recursive { get; set; } = false;