From 7e0a2de19191e8ae6c0792c19a4f278692ed838e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Minelli?= <git@minelli.me> Date: Wed, 13 Mar 2024 12:11:46 +0100 Subject: [PATCH] CompletionScriptCommand => Fix typo --- .../commander/completion/subcommands/CompletionScriptCommand.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NodeApp/src/commander/completion/subcommands/CompletionScriptCommand.ts b/NodeApp/src/commander/completion/subcommands/CompletionScriptCommand.ts index 45c5f3e..a72d622 100644 --- a/NodeApp/src/commander/completion/subcommands/CompletionScriptCommand.ts +++ b/NodeApp/src/commander/completion/subcommands/CompletionScriptCommand.ts @@ -6,7 +6,7 @@ class CompletionScriptCommand extends CommanderCommand { protected commandName: string = 'script'; protected defineCommand() { - this.command.description('generate script completion') + this.command.description('generate shell script completion') .addArgument(new Argument('<shell>', 'shell completion format').choices([ 'bash', 'zsh' ])) .action(this.commandAction.bind(this)); } -- GitLab