diff --git a/cli/src/index.ts b/cli/src/index.ts index e43b9316e..033bdfcb3 100755 --- a/cli/src/index.ts +++ b/cli/src/index.ts @@ -104,7 +104,7 @@ export class Commander { '--config [PATH]', 'load the parameters from the local configuration file, which supports json and yaml format, default path is ./mqttx-cli-config.json', ) - .option('--debug', 'Enable debug mode for MQTT.js', false) + .option('--debug', 'enable debug mode for MQTT.js', false) .allowUnknownOption(false) .action(conn) @@ -211,7 +211,7 @@ export class Commander { '-Pmn, --protobuf-message-name ', 'the name of the protobuf message type (must exist in the .proto file)', ) - .option('--debug', 'Enable debug mode for MQTT.js', false) + .option('--debug', 'enable debug mode for MQTT.js', false) .allowUnknownOption(false) .action(pub) @@ -310,7 +310,7 @@ export class Commander { '-Pmn, --protobuf-message-name ', 'the name of the protobuf message type (must exist in the .proto file)', ) - .option('--debug', 'Enable debug mode for MQTT.js', false) + .option('--debug', 'enable debug mode for MQTT.js', false) .allowUnknownOption(false) .action(sub)