Commit 2aa377d016cd8716320dc8f7e5d5be630ff829b3
Committed by
Henry Schreiner
1 parent
e0c882ae
Fix spelling of `option_defaults()` (#405)
Showing
1 changed file
with
1 additions
and
1 deletions
book/chapters/options.md
| ... | ... | @@ -120,7 +120,7 @@ One of CLI11's systems to allow customizability without high levels of verbosity |
| 120 | 120 | An example of usage: |
| 121 | 121 | |
| 122 | 122 | ``` |
| 123 | -app.option_defauts()->ignore_case()->group("Required"); | |
| 123 | +app.option_defaults()->ignore_case()->group("Required"); | |
| 124 | 124 | |
| 125 | 125 | app.add_flag("--CaSeLeSs"); |
| 126 | 126 | app.get_group() // is "Required" | ... | ... |