Remove extraneous colon from "additional arguments" header.
This commit removes an extraneous colon from the "additional arguments" header for commands like `dotnet run`.
This commit is contained in:
parent
4f7c76b4e4
commit
56d54a5a19
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ namespace Microsoft.DotNet.Cli
|
|||
private static void ConfigureCommandLineLocalizedStrings()
|
||||
{
|
||||
DefaultHelpViewText.AdditionalArgumentsSection =
|
||||
$"{UsageCommandsAdditionalArgsHeader}:{NewLine} {LocalizableStrings.RunCommandAdditionalArgsHelpText}";
|
||||
$"{UsageCommandsAdditionalArgsHeader}{NewLine} {LocalizableStrings.RunCommandAdditionalArgsHelpText}";
|
||||
DefaultHelpViewText.ArgumentsSection.Title = UsageArgumentsHeader;
|
||||
DefaultHelpViewText.CommandsSection.Title = UsageCommandsHeader;
|
||||
DefaultHelpViewText.OptionsSection.Title = UsageOptionsHeader;
|
||||
|
|
Loading…
Reference in a new issue