diff --git a/NodeApp/src/commander/CommanderApp.ts b/NodeApp/src/commander/CommanderApp.ts index 0c92978daad42749175b8dc0a6d8e0c9ea057099..37dbc06cd7783fa8de53d828417c22e981bd9769 100644 --- a/NodeApp/src/commander/CommanderApp.ts +++ b/NodeApp/src/commander/CommanderApp.ts @@ -18,7 +18,7 @@ class CommanderApp { sortOptions : true, sortSubcommands : true }) - .option('-H, --host <string>', 'override the Dojo API endpoint.', Config.apiURL); + .option('-H, --host <string>', 'override the Dojo API endpoint', Config.apiURL); this.program.on('option:host', () => { Config.apiURL = this.program.opts().host; diff --git a/NodeApp/src/commander/enonce/EnonceCommand.ts b/NodeApp/src/commander/enonce/EnonceCommand.ts index c81d0d891bbeb4d1dc45595fafc08c09f5648a94..4ae73d891c33dc718798e7237a0cfbd000e4281d 100644 --- a/NodeApp/src/commander/enonce/EnonceCommand.ts +++ b/NodeApp/src/commander/enonce/EnonceCommand.ts @@ -19,7 +19,7 @@ class EnonceCommand extends CommanderCommand { protected defineCommand() { this.command - .description('Manage an enonce.'); + .description('manage an enonce'); } protected defineSubCommands() { diff --git a/NodeApp/src/commander/session/SessionCommand.ts b/NodeApp/src/commander/session/SessionCommand.ts index 7cd6b01aa674ccd17d78b9bd613ad396e4841a0b..29b8a5a4302fc1f5b7982a93c9796fcde0d01eaa 100644 --- a/NodeApp/src/commander/session/SessionCommand.ts +++ b/NodeApp/src/commander/session/SessionCommand.ts @@ -21,7 +21,7 @@ class SessionCommand extends CommanderCommand { protected defineCommand() { this.command - .description('manage session for API and Gitlab'); + .description('manage Dojo and Gitlab sessions'); } protected defineSubCommands() {