From 2269633b90c3fd719ce69f3c828ae8d98fcb350a Mon Sep 17 00:00:00 2001 From: StevanFreeborn <=> Date: Fri, 24 Mar 2023 21:36:33 -0500 Subject: [PATCH] fix: incorrect field filter description --- src/OnspringCLI/Commands/Attachments/Download/BulkCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OnspringCLI/Commands/Attachments/Download/BulkCommand.cs b/src/OnspringCLI/Commands/Attachments/Download/BulkCommand.cs index ba669b4..588f3f5 100644 --- a/src/OnspringCLI/Commands/Attachments/Download/BulkCommand.cs +++ b/src/OnspringCLI/Commands/Attachments/Download/BulkCommand.cs @@ -25,7 +25,7 @@ public BulkCommand() : base("bulk", "Download attachments in bulk") AddOption( new Option>( aliases: new[] { "--field-filter", "-ff" }, - description: "A comma separated list of field ids to whose attachments will be downloaded.", + description: "A comma separated list of field ids whose attachments will be downloaded.", parseArgument: result => result.ParseToIntegerList() ) );