Skip to content

Commit

Permalink
Fix typos in the new e/empty CLI option
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanSanchez committed Dec 19, 2020
1 parent da820c4 commit a849f76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cli.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ const argv = minimist(process.argv.slice(2), {
o: 'output',
// 🍂option json: Boolean=false; Write the internal JSON representation of the documentation instead of a templated HTML file.
// 🍂option o; Alias of `output`
j: 'json'
j: 'json',
// 🍂option empty: Boolean=false; Akin to [Leafdoc.showInheritancesWhenEmpty](#leafdoc.showinheritanceswhenempty)
// 🍂option e; Alias of `empty`
e: 'json'
e: 'empty'
},
boolean: ['v', 'verbose', 'j', 'json'],
string: ['t', 'template', 'c', 'character'],
Expand Down

0 comments on commit a849f76

Please sign in to comment.