Skip to content

Commit 7191ebe

Browse files
authored
changed the casing of option alias as it conflicts with --help (#3554)
1 parent c832e27 commit 7191ebe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mlnet/Commands/CommandDefinitions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Option OutputPath() =>
102102
new Argument<DirectoryInfo>(defaultValue: new DirectoryInfo(".")));
103103

104104
Option HasHeader() =>
105-
new Option(new List<string>() { "--has-header", "-h" }, "Specify true/false depending if the dataset file(s) have a header row.",
105+
new Option(new List<string>() { "--has-header", "-H" }, "Specify true/false depending if the dataset file(s) have a header row.",
106106
new Argument<bool>(defaultValue: true));
107107

108108
Option Cache() =>

0 commit comments

Comments
 (0)