Skip to content

Commit 5fc8d0a

Browse files
Improve help command text (#55)
So that's clearer how to get information about a command
1 parent 84c5526 commit 5fc8d0a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

source/CommandLine/Commands/HelpCommand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
namespace Octopus.CommandLine.Commands
77
{
8-
[Command("help", "?", "h", Description = "Prints this help text.")]
8+
[Command("help", "?", "h", Description = "Prints this help text. Pass the name of a command to see the arguments required for that command.")]
99
public class HelpCommand : CommandBase
1010
{
1111
readonly Lazy<ICommandLocator> commands;
@@ -108,4 +108,4 @@ public void PrintJsonOutput()
108108
}));
109109
}
110110
}
111-
}
111+
}

0 commit comments

Comments
 (0)