@@ -530,7 +530,7 @@ Before parsing, you can set the following options:
530530 are ` CLI::MultiOptionPolicy::Throw ` , ` CLI::MultiOptionPolicy::Throw ` ,
531531 ` CLI::MultiOptionPolicy::TakeLast ` , ` CLI::MultiOptionPolicy::TakeFirst ` ,
532532 ` CLI::MultiOptionPolicy::Join ` , ` CLI::MultiOptionPolicy::TakeAll ` , and
533- ` CLI::MultiOptionPolicy::Sum ` 🚧 .
533+ ` CLI::MultiOptionPolicy::Sum ` 🆕 .
534534- ` ->check(std::string(const std::string &), validator_name="",validator_description="") ` :
535535 Define a check function. The function should return a non empty string with
536536 the error message if the check fails
@@ -571,7 +571,7 @@ Before parsing, you can set the following options:
571571- ` ->trigger_on_parse() ` : If set, causes the callback and all associated
572572 validation checks for the option to be executed when the option value is
573573 parsed vs. at the end of all parsing. This could cause the callback to be
574- executed multiple times. Also works with positional options 🆕 .
574+ executed multiple times. Also works with positional options.
575575
576576These options return the ` Option ` pointer, so you can chain them together, and
577577even skip storing the pointer entirely. The ` each ` function takes any function
@@ -658,7 +658,7 @@ CLI11 has several Validators built-in that perform some common checks
658658- ` CLI::ExistingDirectory ` : Requires that the directory exists.
659659- ` CLI::ExistingPath ` : Requires that the path (file or directory) exists.
660660- ` CLI::NonexistentPath ` : Requires that the path does not exist.
661- - ` CLI::FileOnDefaultPath ` : 🆕 Best used as a transform, Will check that a file
661+ - ` CLI::FileOnDefaultPath ` : Best used as a transform, Will check that a file
662662 exists either directly or in a default path and update the path appropriately.
663663 See [ Transforming Validators] ( #transforming-validators ) for more details
664664- ` CLI::Range(min,max) ` : Requires that the option be between min and max (make
0 commit comments