diff --git a/include/CLI/App.hpp b/include/CLI/App.hpp index 5fc02f43..ecb0b48a 100644 --- a/include/CLI/App.hpp +++ b/include/CLI/App.hpp @@ -66,7 +66,7 @@ class App { /// If true, allow extra arguments (ie, don't throw an error). bool allow_extras_{false}; - /// If true, return immediatly on an unrecognised option (implies allow_extras) + /// If true, return immediately on an unrecognised option (implies allow_extras) bool prefix_command_{false}; /// This is a function that runs when complete. Great for subcommands. Can throw. @@ -93,7 +93,7 @@ class App { /// This is faster and cleaner than storing just a list of strings and reparsing. This may contain the -- separator. missing_t missing_; - /// This is a list of pointers to options with the orignal parse order + /// This is a list of pointers to options with the original parse order std::vector