From 30a40a090b6fc5d1e85b6dcd646da6c3039072d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=A4kel=C3=A4?= Date: Fri, 30 Jun 2017 15:58:33 +0300 Subject: [PATCH] MXS-1300: Make global option descriptions more brief The option descriptions now fit on one line with their parameter types and default values. --- client/maxctrl/maxctrl.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/maxctrl/maxctrl.js b/client/maxctrl/maxctrl.js index 6e2c64a05..3290337bc 100644 --- a/client/maxctrl/maxctrl.js +++ b/client/maxctrl/maxctrl.js @@ -34,19 +34,19 @@ program }) .option('h', { alias: 'host', - describe: 'The hostname or address where MaxScale is located', + describe: 'MaxScale hostname', default: 'localhost', type: 'string' }) .option('P', { alias: 'port', - describe: 'The port where MaxScale REST API listens on', + describe: 'MaxScale REST API port', default: 8989, type: 'number' }) .option('s', { alias: 'secure', - describe: 'Enable TLS encryption of connections', + describe: 'Enable HTTPS requests', default: 'false', type: 'boolean' })