We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbb59af commit 3ce8a7aCopy full SHA for 3ce8a7a
src/BrowserAutomationMaster/Messaging/Help.cs
@@ -1,4 +1,5 @@
1
-using Spectre.Console;
+using BrowserAutomationMaster.Managers;
2
+using Spectre.Console;
3
using static BrowserAutomationMaster.Managers.CommandManager;
4
5
namespace BrowserAutomationMaster.Messaging
@@ -30,7 +31,7 @@ public static void ShowCommandDetails(string command)
30
31
var examples = exArray.Length != 0 ? string.Join("\n", exArray) : "Not Found";
32
Success.WriteSuccessMessage(
33
$"\nCommand: {command}\n" +
- $"\nType: {command}" +
34
+ $"\nType: {CommandManager.GetType(command)}" +
35
$"\n\nDescription:\n{GetDescription(command)}" +
36
$"\n\nExamples:\n{Markup.Escape(examples)}\n"
37
);
0 commit comments