Commit 378eb3406cec39a0afa270efebfb62b9dbd701f2
1 parent
0243fda6
Fix space in help output.
Showing
1 changed file
with
1 additions
and
1 deletions
include/CLI/Error.hpp
| @@ -172,7 +172,7 @@ class ConversionError : public ParseError { | @@ -172,7 +172,7 @@ class ConversionError : public ParseError { | ||
| 172 | CLI11_ERROR_DEF(ParseError, ConversionError) | 172 | CLI11_ERROR_DEF(ParseError, ConversionError) |
| 173 | CLI11_ERROR_SIMPLE(ConversionError) | 173 | CLI11_ERROR_SIMPLE(ConversionError) |
| 174 | ConversionError(std::string member, std::string name) | 174 | ConversionError(std::string member, std::string name) |
| 175 | - : ConversionError("The value " + member + "is not an allowed value for " + name) {} | 175 | + : ConversionError("The value " + member + " is not an allowed value for " + name) {} |
| 176 | ConversionError(std::string name, std::vector<std::string> results) | 176 | ConversionError(std::string name, std::vector<std::string> results) |
| 177 | : ConversionError("Could not convert: " + name + " = " + detail::join(results)) {} | 177 | : ConversionError("Could not convert: " + name + " = " + detail::join(results)) {} |
| 178 | static ConversionError TooManyInputsFlag(std::string name) { | 178 | static ConversionError TooManyInputsFlag(std::string name) { |