From 01e06a46cfdb6c1762424664d51ca552600ce22a Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Wed, 17 Apr 2024 16:09:25 +0100 Subject: [PATCH] style: reword --recursive flag description --- FindDuplicates/ListSettings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FindDuplicates/ListSettings.cs b/FindDuplicates/ListSettings.cs index 0d25840..ecc14b6 100644 --- a/FindDuplicates/ListSettings.cs +++ b/FindDuplicates/ListSettings.cs @@ -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;