diff --git a/src/Tools/dotnet-dump/Program.cs b/src/Tools/dotnet-dump/Program.cs index c009e7a679..56965cd392 100644 --- a/src/Tools/dotnet-dump/Program.cs +++ b/src/Tools/dotnet-dump/Program.cs @@ -108,7 +108,7 @@ private static Argument DumpPath() => private static Option RunCommand() => new Option( aliases: new[] { "-c", "--command" }, - description: "Runs the command on start. Multiple instances of this parameter can be used in an invocation to chain commands. Commands will get run in the order that they are provided on the command line. If you want to dotnet dump to exit after the commands, your last command should be 'exit'.") + description: "Runs the command on start. Multiple instances of this parameter can be used in an invocation to chain commands. Commands will get run in the order that they are provided on the command line. If you want dotnet dump to exit after the commands, your last command should be 'exit'.") { Argument = new Argument(name: "command", getDefaultValue: () => Array.Empty()) { Arity = ArgumentArity.ZeroOrMore } };