Skip to content

Commit 8e97eed

Browse files
committed
Merge pull request microsoft#22 from Microsoft/access_key_changes
Updating access-key rm command's help output
2 parents 96da3b4 + f1e4818 commit 8e97eed

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cli/script/command-parser.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ function accessKeyList(commandName: string, yargs: yargs.Argv): void {
4242

4343
function accessKeyRemove(commandName: string, yargs: yargs.Argv): void {
4444
isValidCommand = true;
45-
yargs.usage(USAGE_PREFIX + " access-key " + commandName + " <accessKeyName>")
45+
yargs.usage(USAGE_PREFIX + " access-key " + commandName + " <accessKey>")
4646
.demand(/*count*/ 3, /*max*/ 3) // Require exactly three non-option arguments.
47-
.example("access-key " + commandName + " abc", "Removes access key \"abc\"");
47+
.example("access-key " + commandName + " 8d6513de-050c-4788-96f7-b2a50dd9684v", "Removes the \"8d6513de-050c-4788-96f7-b2a50dd9684v\" access key");
4848

4949
addCommonConfiguration(yargs);
5050
}

0 commit comments

Comments
 (0)