From 76c66c50b575ac1a36ca22674837e0c22e6b74c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Minelli?= <git@minelli.swiss> Date: Tue, 25 Jun 2024 22:41:59 +0200 Subject: [PATCH] TagProposalCreateCommand => Fix description --- .../proposal/subcommands/TagProposalCreateCommand.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NodeApp/src/commander/tag/subcommands/proposal/subcommands/TagProposalCreateCommand.ts b/NodeApp/src/commander/tag/subcommands/proposal/subcommands/TagProposalCreateCommand.ts index b9fe4c6..d34a4bc 100644 --- a/NodeApp/src/commander/tag/subcommands/proposal/subcommands/TagProposalCreateCommand.ts +++ b/NodeApp/src/commander/tag/subcommands/proposal/subcommands/TagProposalCreateCommand.ts @@ -13,7 +13,7 @@ class TagProposalCreateCommand extends CommanderCommand { protected defineCommand() { this.command - .description('Propose a tag proposition') + .description('Propose a new tag') .requiredOption('-n, --name <name>', 'name of the tag') .addOption(new Option('-t, --type <type>', 'type of the tag').choices([ 'Language', 'Framework', 'Theme', 'UserDefined' ]).makeOptionMandatory(true)) .action(this.commandAction.bind(this)); -- GitLab