From a849f76185013925496e1e357d13f747c9db6774 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20S=C3=A1nchez=20Ortega?= Date: Sat, 19 Dec 2020 16:53:04 +0100 Subject: [PATCH] Fix typos in the new e/empty CLI option --- src/cli.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cli.mjs b/src/cli.mjs index 82ca4a8..99517ae 100755 --- a/src/cli.mjs +++ b/src/cli.mjs @@ -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'],