From caf57b24ea200fdf39f49dd3bf2ab5df6b2b1ff0 Mon Sep 17 00:00:00 2001 From: practicalswift Date: Sun, 14 Jan 2018 23:18:20 +0100 Subject: [PATCH] Use correct description for the "help" CLI command --- lightningd/jsonrpc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lightningd/jsonrpc.c b/lightningd/jsonrpc.c index 7be5ccc54..aee60be95 100644 --- a/lightningd/jsonrpc.c +++ b/lightningd/jsonrpc.c @@ -51,8 +51,8 @@ static void json_help(struct command *cmd, static const struct json_command help_command = { "help", json_help, - "describe commands", - "[] if specified gives details about a single command." + "List available commands", + "Returns an array of available commands", }; AUTODATA(json_command, &help_command);