From 2aa377d016cd8716320dc8f7e5d5be630ff829b3 Mon Sep 17 00:00:00 2001 From: James Gerity <57360646+jgerityneurala@users.noreply.github.com> Date: Wed, 15 Jan 2020 20:40:27 -0500 Subject: [PATCH] Fix spelling of `option_defaults()` (#405) --- book/chapters/options.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/chapters/options.md b/book/chapters/options.md index 3bb2ff0d..4ca7844c 100644 --- a/book/chapters/options.md +++ b/book/chapters/options.md @@ -120,7 +120,7 @@ One of CLI11's systems to allow customizability without high levels of verbosity An example of usage: ``` -app.option_defauts()->ignore_case()->group("Required"); +app.option_defaults()->ignore_case()->group("Required"); app.add_flag("--CaSeLeSs"); app.get_group() // is "Required"