diff --git a/index.js b/index.js index 6362d3a..dc7bf47 100644 --- a/index.js +++ b/index.js @@ -95,10 +95,10 @@ function processStream(options) { var command = cli.create('csso', '[query]') .version(require('./package.json').version) - .option('-q, --query ', 'Jora uqery') + .option('-q, --query ', 'Jora query') .option('-i, --input ', 'Input file') - .option('-o, --output ', 'Output file (result outputs to stdout if not set)') - .option('-p, --pretty [indent]', 'Pretty print with desired indentation (4 spaces by default)', value => + .option('-o, --output ', 'Output file (outputs to stdout if not set)') + .option('-p, --pretty [indent]', 'Pretty print with optionally specified indentation(4 spaces by default)', value => value === undefined ? 4 : Number(value) || false , false) .action(function(args) {