minor tweaks...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2020-07-29 02:11:57 +03:00
parent cbe6bd8ca5
commit f2e9c0a743
2 changed files with 4 additions and 2 deletions

View File

@ -543,7 +543,9 @@ Passing [`--help`](#-h----help) or [`--version`](#-v----version) will
disable quiet mode and print normally.
Note that this will only set `<parser>.quiet` to `true` and disable output
of `<parser>.print(..)`, any user code needs to either also use `<parser>.print(..)` for output (not always practical) or respect `<parser>.quiet`.
of [`<parser>.print(..)`](#parserprint--parserprinterror), any user code
needs to either also use [`<parser>.print(..)`](#parserprint--parserprinterror)
for output (not always practical) or respect `<parser>.quiet`.
#### `-h` / `--help`

View File

@ -641,7 +641,7 @@ object.Constructor('Parser', {
// Quiet mode...
// XXX should this have a afterCallback(..) handler???
//
quiet: undefined,
'-q': '-quiet',