@@ -514,7 +514,7 @@ On the command line, options can be given as:
514
514
- ` -ffilename ` (no space required)
515
515
- ` -abcf filename ` (flags and option can be combined)
516
516
- ` --long ` (long flag)
517
- - ` --long_flag=true ` (long flag with equals to override default value)
517
+ - ` --long_flag=true ` (long flag with equals -- to override default value)
518
518
- ` --file filename ` (space)
519
519
- ` --file=filename ` (equals)
520
520
@@ -1254,7 +1254,7 @@ formatter. An example of a TOML file:
1254
1254
1255
1255
``` toml
1256
1256
# Comments are supported, using a #
1257
- # The default section is [default], case insensitive
1257
+ # The default section is [default], case- insensitive
1258
1258
1259
1259
value = 1
1260
1260
value2 = 123_456 # a string with separators
@@ -1275,7 +1275,7 @@ or equivalently in INI format
1275
1275
1276
1276
``` ini
1277
1277
; Comments are supported, using a ;
1278
- ; The default section is [default], case insensitive
1278
+ ; The default section is [default], case- insensitive
1279
1279
1280
1280
value = 1
1281
1281
str = " A string"
@@ -1291,7 +1291,7 @@ sub.subcommand = true
1291
1291
Spaces before and after the name and argument are ignored. Multiple arguments
1292
1292
are separated by spaces. One set of quotes will be removed, preserving spaces
1293
1293
(the same way the command line works). Boolean options can be ` true ` , ` on ` , ` 1 ` ,
1294
- ` yes ` , ` enable ` ; or ` false ` , ` off ` , ` 0 ` , ` no ` , ` disable ` (case insensitive).
1294
+ ` yes ` , ` enable ` ; or ` false ` , ` off ` , ` 0 ` , ` no ` , ` disable ` (case- insensitive).
1295
1295
Sections (and ` . ` separated names) are treated as subcommands (note: this does
1296
1296
not necessarily mean that subcommand was passed, it just sets the "defaults").
1297
1297
You cannot set positional-only arguments. Subcommands can be triggered from
@@ -1618,7 +1618,7 @@ brief description of each is included here
1618
1618
- [formatter](https://github.com/CLIUtils/CLI11/blob/main/examples/formatter.cpp):
1619
1619
Illustrating usage of a custom formatter
1620
1620
- [groups](https://github.com/CLIUtils/CLI11/blob/main/examples/groups.cpp):
1621
- Example using groups of options for help grouping and a the timer helper class
1621
+ Example using groups of options for help grouping and a timer helper class
1622
1622
- [inter_argument_order](https://github.com/CLIUtils/CLI11/blob/main/examples/inter_argument_order.cpp):
1623
1623
An app to practice mixing unlimited arguments, but still recover the original
1624
1624
order.
@@ -1665,10 +1665,10 @@ brief description of each is included here
1665
1665
1666
1666
To contribute, open an [issue][github issues] or [pull
1667
1667
request][github pull requests] on GitHub, or ask a question on [gitter][]. There
1668
- is also a short note to contributors [here ](./.github/CONTRIBUTING.md). This
1669
- readme roughly follows the [Standard Readme Style][] and includes a mention of
1670
- almost every feature of the library. More complex features are documented in
1671
- more detail in the [CLI11 tutorial GitBook][gitbook].
1668
+ is also a [ short note to contributors](./.github/CONTRIBUTING.md). This readme
1669
+ roughly follows the [Standard Readme Style][] and includes a mention of almost
1670
+ every feature of the library. More complex features are documented in more
1671
+ detail in the [CLI11 tutorial GitBook][gitbook].
1672
1672
1673
1673
This project was created by [Henry Schreiner](https://github.com/henryiii) and
1674
1674
major features were added by [Philip Top](https://github.com/phlptp). Special
0 commit comments