Skip to content

Commit

Permalink
Typos
Browse files Browse the repository at this point in the history
  • Loading branch information
lahmatiy committed Jul 25, 2019
1 parent 4055ec0 commit 0e6996d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## 1.0.1 (July 4, 2019)

- Used dist version of `jora` to reduce startup time (up to 10x)
- Used dist version of `jora` to reduce startup time (up to 10x times)
- Removed wrongly added dependency
- Fixed command name in help info
- Fixed returning `undefined` when no query, now command returns input itself as when query is empty string
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ var command = cli.create('jora', '[query]')
.option('-q, --query <query>', 'Jora query')
.option('-i, --input <filename>', 'Input file')
.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 =>
.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 0e6996d

Please sign in to comment.