File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -382,7 +382,7 @@ $ my-cli --file a.txt -f b.txt --files c.txt
382382# (-f and --files first, then --file appended)
383383```
384384
385- ### Boolean Negation (` --no-<flag> ` )
385+ ### Boolean Negation (--no-<flag >)
386386
387387All boolean options automatically support a negated form ` --no-<flag> ` to explicitly set the option to ` false ` :
388388
@@ -408,7 +408,7 @@ opt.options({
408408// Help output shows: --no-colors Use colors [boolean] default: true
409409```
410410
411- ### ` opt.options(schema) `
411+ ### opt.options(schema)
412412
413413Create a parser from an options schema:
414414
@@ -440,7 +440,7 @@ pos.variadic('string'); // [files...]
440440| ` name ` | ` string ` | Display name in help (defaults to ` arg0 ` , ` arg1 ` , ...) |
441441| ` required ` | ` boolean ` | Mark as required (shown as ` <name> ` vs ` [name] ` ) |
442442
443- ### ` pos.positionals(...defs) `
443+ ### pos.positionals(...defs)
444444
445445Create a parser from positional definitions:
446446
You can’t perform that action at this time.
0 commit comments