diff --git a/src/Tools/dotnet-gcdump/CommandLine/CollectCommandHandler.cs b/src/Tools/dotnet-gcdump/CommandLine/CollectCommandHandler.cs index f756e4ea21..e05dbd4bf2 100644 --- a/src/Tools/dotnet-gcdump/CommandLine/CollectCommandHandler.cs +++ b/src/Tools/dotnet-gcdump/CommandLine/CollectCommandHandler.cs @@ -150,7 +150,7 @@ private static Option ProcessIdOption() => private static Option NameOption() => new Option( aliases: new[] { "-n", "--name" }, - description: "The name of the process to collect the gcdump.") + description: "The name of the process to collect the gcdump from.") { Argument = new Argument(name: "name") }; diff --git a/src/Tools/dotnet-gcdump/Program.cs b/src/Tools/dotnet-gcdump/Program.cs index 06bb2bbc69..d33868baf5 100644 --- a/src/Tools/dotnet-gcdump/Program.cs +++ b/src/Tools/dotnet-gcdump/Program.cs @@ -15,7 +15,7 @@ public static Task Main(string[] args) { var parser = new CommandLineBuilder() .AddCommand(CollectCommandHandler.CollectCommand()) - .AddCommand(ProcessStatusCommandHandler.ProcessStatusCommand("Lists the dotnet processes that gcdumps can be collected")) + .AddCommand(ProcessStatusCommandHandler.ProcessStatusCommand("Lists the dotnet processes that gcdumps can be collected from")) .AddCommand(ReportCommandHandler.ReportCommand()) .UseDefaults() .Build();