We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d5e4bad + 193fd27 commit ffba32cCopy full SHA for ffba32c
src/AtleX.CommandLineArguments/Help/ConsoleHelpWriter.cs
@@ -28,9 +28,9 @@ public override void Write<T>(T argumentsToWriteHelpFor)
28
Console.WriteLine();
29
foreach (var currentHelpDetails in helpDetails)
30
{
31
- var requiredIndicator = currentHelpDetails.IsRequired ? "*" : string.Empty;
+ var requiredIndicator = currentHelpDetails.IsRequired ? "(*)" : string.Empty;
32
33
- var helpTextForArgument = $" {currentHelpDetails.Argument}: {currentHelpDetails.Description} ({requiredIndicator})";
+ var helpTextForArgument = $" {currentHelpDetails.Argument}: {currentHelpDetails.Description} {requiredIndicator}";
34
35
Console.WriteLine(helpTextForArgument);
36
}
0 commit comments