@@ -504,26 +504,25 @@ Before parsing, you can set the following options:
504504 parsed vs. at the end of all parsing. This could cause the callback to be
505505 executed multiple times. Also works with positional options.
506506- ` ->callback_priority(CallbackPriority priority) ` : 🚧 changes the order in
507- which the option callback is executed. Four principal callback call-points
508- are available. ` CallbackPriority::First ` executes at the very beginning of
507+ which the option callback is executed. Four principal callback call-points are
508+ available. ` CallbackPriority::First ` executes at the very beginning of
509509 processing, before configuration files are read and environment variables are
510510 interpreted. ` CallbackPriority::PreRequirementsCheck ` executes after
511511 configuration and environment processing but before requirements checking.
512512 ` CallbackPriority::Normal ` executes after the requirements check but before
513513 any previously potentially raised exceptions are re-thrown.
514- ` CallbackPriority::Last ` executes after exception handling is completed.
515- For each position, both ordinary option callbacks and help callbacks are
516- invoked. The relative order between them can be controlled using the
517- corresponding ` PreHelp ` variants. ` CallbackPriority::FirstPreHelp ` executes
518- ordinary option callbacks before help callbacks at the very beginning of
519- processing. ` CallbackPriority::PreRequirementsCheckPreHelp ` executes ordinary
520- option callbacks before help callbacks after configuration and environment
521- processing but before requirements checking. ` CallbackPriority::NormalPreHelp `
522- executes ordinary option callbacks before help callbacks after the
523- requirements check but before exception re-throwing.
524- ` CallbackPriority::LastPreHelp ` executes ordinary option callbacks before help
525- callbacks after exception handling has completed. When using the standard
526- priorities (` CallbackPriority::First ` ,
514+ ` CallbackPriority::Last ` executes after exception handling is completed. For
515+ each position, both ordinary option callbacks and help callbacks are invoked.
516+ The relative order between them can be controlled using the corresponding
517+ ` PreHelp ` variants. ` CallbackPriority::FirstPreHelp ` executes ordinary option
518+ callbacks before help callbacks at the very beginning of processing.
519+ ` CallbackPriority::PreRequirementsCheckPreHelp ` executes ordinary option
520+ callbacks before help callbacks after configuration and environment processing
521+ but before requirements checking. ` CallbackPriority::NormalPreHelp ` executes
522+ ordinary option callbacks before help callbacks after the requirements check
523+ but before exception re-throwing. ` CallbackPriority::LastPreHelp ` executes
524+ ordinary option callbacks before help callbacks after exception handling has
525+ completed. When using the standard priorities (` CallbackPriority::First ` ,
527526 ` CallbackPriority::PreRequirementsCheck ` , ` CallbackPriority::Normal ` ,
528527 ` CallbackPriority::Last ` ), help callbacks are executed before ordinary option
529528 callbacks. By default, help callbacks use ` CallbackPriority::First ` , and
0 commit comments