Fix dotnet stack option help typo (#3499)
authorJongHeonChoi <j-h.choi@samsung.com>
Tue, 8 Nov 2022 03:46:35 +0000 (12:46 +0900)
committerGitHub <noreply@github.com>
Tue, 8 Nov 2022 03:46:35 +0000 (19:46 -0800)
src/Tools/dotnet-stack/ReportCommand.cs

index f8eafe268927f643261456e1f124ee3689a2ce78..9f782ae6bdf1ac8dacf6c0d68d3e99c512d78f4b 100644 (file)
@@ -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<int>(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<string>(name: "name")
             };