From 6e9a01072d85f5743e8c49e22d2b4549fa6278e2 Mon Sep 17 00:00:00 2001 From: JongHeonChoi Date: Tue, 8 Nov 2022 12:46:35 +0900 Subject: [PATCH] Fix dotnet stack option help typo (#3499) --- src/Tools/dotnet-stack/ReportCommand.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Tools/dotnet-stack/ReportCommand.cs b/src/Tools/dotnet-stack/ReportCommand.cs index f8eafe268..9f782ae6b 100644 --- a/src/Tools/dotnet-stack/ReportCommand.cs +++ b/src/Tools/dotnet-stack/ReportCommand.cs @@ -98,7 +98,7 @@ namespace Microsoft.Diagnostics.Tools.Stack await copyTask; } - // using the generated trace file, symbolocate and compute stacks. + // using the generated trace file, symbolicate and compute stacks. tempEtlxFilename = TraceLog.CreateFromEventPipeDataFile(tempNetTraceFilename); using (var symbolReader = new SymbolReader(System.IO.TextWriter.Null) { SymbolPath = SymbolPath.MicrosoftSymbolServerPath }) using (var eventLog = new TraceLog(tempEtlxFilename)) @@ -199,7 +199,7 @@ namespace Microsoft.Diagnostics.Tools.Stack public static Option ProcessIdOption() => new Option( aliases: new[] { "-p", "--process-id" }, - description: "The process id to collect the trace.") + description: "The process id to report the stack.") { Argument = new Argument(name: "pid") }; @@ -207,7 +207,7 @@ namespace Microsoft.Diagnostics.Tools.Stack public static Option NameOption() => new Option( aliases: new[] { "-n", "--name" }, - description: "The name of the process to collect the trace.") + description: "The name of the process to report the stack.") { Argument = new Argument(name: "name") }; -- 2.34.1