Skip to content

Commit

Permalink
Fix typo in --names description
Browse files Browse the repository at this point in the history
  • Loading branch information
Yousef-Majidi committed Dec 9, 2023
1 parent 0a18c63 commit d35e3ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Explore.Cli/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public static async Task<int> Main(string[] args)
var exportFileName = new Option<string>(name: "--export-name", description: "The name of the file to export") { IsRequired = false };
exportFileName.AddAlias("-en");

var names = new Option<string>(name: "--names", description: "The names of the spaces to export or export") { IsRequired = false };
var names = new Option<string>(name: "--names", description: "The names of the spaces to export or import") { IsRequired = false };
names.AddAlias("-n");

var verbose = new Option<bool?>(name: "--verbose", description: "Include verbose output during processing") { IsRequired = false };
Expand Down

0 comments on commit d35e3ba

Please sign in to comment.