From c49751a30491424f0e790c3872473446d65a7554 Mon Sep 17 00:00:00 2001 From: "Nisar, Naitik" Date: Mon, 11 Feb 2019 18:15:26 +0530 Subject: [PATCH] fixing help text description fixing help text description --- bin/here-xyz.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/bin/here-xyz.ts b/bin/here-xyz.ts index 061a217..80724cd 100644 --- a/bin/here-xyz.ts +++ b/bin/here-xyz.ts @@ -210,7 +210,7 @@ function collect(val: string, memo: string[]) { program .command("describe ") - .description("shows the content of the given [id]") + .description("gives the summary details of the given space [id]") .option("-l, --limit ", "Number of objects to be fetched") .option("-h, --handle ", "The handle to continue the iteration") .option("-t, --tags ", "Tags to filter on") @@ -286,7 +286,7 @@ function getSpaceDataFromXyz(id: string, options: any) { program .command("analyze ") - .description("shows the content of the given [id]") + .description("property based analysis of the content of the given [id]") .option("-l, --limit ", "Number of objects to be fetched") .option("-h, --handle ", "The handle to continue the iteration") .option("-t, --tags ", "Tags to filter on") @@ -457,7 +457,6 @@ program // .option("-tmax, --tileMaxLevel [tileMaxLevel]", "Maximum Supported Tile Level") .option("-t, --title [title]", "Title for xyzspace") .option("-d, --message [message]", "Short description ") - .option("-p, --profile [profile]", "Select a profile") .action(async options => { if (options) { if (!options.title) { @@ -473,7 +472,7 @@ program }); program - .command("clear") + .command("clear ") .description("clear data from xyz space") .option("-t, --tags [tags]", "tags for the xyz space") .option("-i, --ids [ids]", "ids for the xyz space")