Skip to content

Commit

Permalink
Typos
Browse files Browse the repository at this point in the history
  • Loading branch information
lahmatiy committed Jul 4, 2019
1 parent 6a6640e commit 9677ff8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,10 @@ function processStream(options) {

var command = cli.create('csso', '[query]')
.version(require('./package.json').version)
.option('-q, --query <query>', 'Jora uqery')
.option('-q, --query <query>', 'Jora query')
.option('-i, --input <filename>', 'Input file')
.option('-o, --output <filename>', '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 <filename>', '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) {
Expand Down

0 comments on commit 9677ff8

Please sign in to comment.