Use correct description for the "help" CLI command

This commit is contained in:
practicalswift
2018-01-14 23:18:20 +01:00
committed by Rusty Russell
parent 4c45afafdc
commit caf57b24ea

View File

@@ -51,8 +51,8 @@ static void json_help(struct command *cmd,
static const struct json_command help_command = {
"help",
json_help,
"describe commands",
"[<command>] if specified gives details about a single command."
"List available commands",
"Returns an array of available commands",
};
AUTODATA(json_command, &help_command);