From: JongHeonChoi Date: Tue, 8 Nov 2022 03:46:35 +0000 (+0900) Subject: Fix dotnet stack option help typo (#3499) X-Git-Tag: accepted/tizen/unified/riscv/20231226.055542~45^2^2~26 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6e9a01072d85f5743e8c49e22d2b4549fa6278e2;p=platform%2Fcore%2Fdotnet%2Fdiagnostics.git Fix dotnet stack option help typo (#3499) --- 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") };