From fc69345f2fb22f8d47ea40650ac14e6d03b7ee4f Mon Sep 17 00:00:00 2001 From: Henry Fredrick Schreiner Date: Sun, 26 Nov 2017 22:40:40 -0500 Subject: [PATCH] Improve one more message --- include/CLI/Error.hpp | 2 +- include/CLI/Option.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/CLI/Error.hpp b/include/CLI/Error.hpp index fc3624f..589c486 100644 --- a/include/CLI/Error.hpp +++ b/include/CLI/Error.hpp @@ -172,7 +172,7 @@ class RequiresError : public ParseError { : RequiresError(curname + " requires " + subname, ExitCodes::RequiresError) {} }; -/// Thrown when a exludes option is present +/// Thrown when an excludes option is present class ExcludesError : public ParseError { CLI11_ERROR_DEF(ParseError, ExcludesError) ExcludesError(std::string curname, std::string subname) diff --git a/include/CLI/Option.hpp b/include/CLI/Option.hpp index 4a577c1..990440f 100644 --- a/include/CLI/Option.hpp +++ b/include/CLI/Option.hpp @@ -298,7 +298,7 @@ class Option : public OptionBase