We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0eb88ed commit b0f63a4Copy full SHA for b0f63a4
include/CLI/Error.hpp
@@ -275,7 +275,7 @@ class ArgumentMismatch : public ParseError {
275
std::to_string(received));
276
}
277
static ArgumentMismatch AtMost(std::string name, int num, std::size_t received) {
278
- return ArgumentMismatch(name + ": At Most " + std::to_string(num) + " required but received " +
+ return ArgumentMismatch(name + ": At most " + std::to_string(num) + " required but received " +
279
280
281
static ArgumentMismatch TypedAtLeast(std::string name, int num, std::string type) {
0 commit comments