Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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<string>(name: "name")
};
Expand Down
2 changes: 1 addition & 1 deletion src/Tools/dotnet-gcdump/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public static Task<int> 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();
Expand Down