Fix help displayed for dotnet-dump DumpConcurrentQueue command (#1809)
authorJP Durot <jp.durot@criteo.com>
Thu, 10 Dec 2020 17:12:03 +0000 (18:12 +0100)
committerGitHub <noreply@github.com>
Thu, 10 Dec 2020 17:12:03 +0000 (09:12 -0800)
src/Tools/dotnet-dump/ExtensionCommands/DumpConcurrentDictionaryCommand.cs
src/Tools/dotnet-dump/ExtensionCommands/DumpConcurrentQueueCommand.cs

index 0861912328dfa1b3d2a4ff12ff12c979c2f292e4..0fd46ad5424e3637f00f58a751e56618ef6e463e 100644 (file)
@@ -8,7 +8,7 @@ using System;
 
 namespace Microsoft.Diagnostic.Tools.Dump.ExtensionCommands
 {
-    [Command(Name = "dumpconcurrentdictionary", Help = "Display concurrent dictionary content")]
+    [Command(Name = "dumpconcurrentdictionary", Help = "Display concurrent dictionary content.")]
     [CommandAlias(Name = "dcd")]
     public class DumpConcurrentDictionaryCommand : ExtensionCommandBase
     {
index 7b2c01921de8bab07d8303ccefc5f93a29bc2af4..42e5dd747bcecf5b43fa37ec084b84ad84edb19c 100644 (file)
@@ -8,7 +8,7 @@ using Microsoft.Diagnostics.Runtime;
 
 namespace Microsoft.Diagnostic.Tools.Dump.ExtensionCommands
 {
-    [Command(Name = "dumpconcurrentqueue", Help = "Display queued ThreadPool work items.")]
+    [Command(Name = "dumpconcurrentqueue", Help = "Display concurrent queue content.")]
     [CommandAlias(Name = "dcq")]
     public class DumpConcurrentQueueCommand : ExtensionCommandBase
     {