Skip to content

Commit b0f63a4

Browse files
gblanco92phlptp
andauthored
Fix spelling in Error.hpp (#1129)
Co-authored-by: Philip Top <phlptp@gmail.com>
1 parent 0eb88ed commit b0f63a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/CLI/Error.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ class ArgumentMismatch : public ParseError {
275275
std::to_string(received));
276276
}
277277
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 " +
278+
return ArgumentMismatch(name + ": At most " + std::to_string(num) + " required but received " +
279279
std::to_string(received));
280280
}
281281
static ArgumentMismatch TypedAtLeast(std::string name, int num, std::string type) {

0 commit comments

Comments
 (0)