From bca6d9120a05407e6533e61638b9451abd69459c Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Sun, 1 Dec 2019 12:40:37 +0100 Subject: [PATCH] src/cli/command.rs: improve help command description --- src/cli/command.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cli/command.rs b/src/cli/command.rs index c47bec87..22f70313 100644 --- a/src/cli/command.rs +++ b/src/cli/command.rs @@ -119,12 +119,12 @@ pub fn handle_nested_command( const API_METHOD_COMMAND_HELP: ApiMethod = ApiMethod::new( &ApiHandler::Sync(&help_command), &ObjectSchema::new( - "Get help about specified command.", + "Get help about specified command (or sub-command).", &[ ( "command", true, &ArraySchema::new( - "Command", + "Command. This may be a list in order to spefify nested sub-commands.", &StringSchema::new("Name.").schema() ).schema() ),