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 | 172 | CLI11_ERROR_DEF(ParseError, ConversionError) |
| 173 | 173 | CLI11_ERROR_SIMPLE(ConversionError) |
| 174 | 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 | 176 | ConversionError(std::string name, std::vector<std::string> results) |
| 177 | 177 | : ConversionError("Could not convert: " + name + " = " + detail::join(results)) {} |
| 178 | 178 | static ConversionError TooManyInputsFlag(std::string name) { | ... | ... |