From b0f63a4442d8dbd30b635db80f72a5da002dd95d Mon Sep 17 00:00:00 2001 From: Guillem Blanco Date: Mon, 3 Mar 2025 14:39:43 +0100 Subject: [PATCH] Fix spelling in Error.hpp (#1129) Co-authored-by: Philip Top --- include/CLI/Error.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/CLI/Error.hpp b/include/CLI/Error.hpp index b37f9693..25d8d959 100644 --- a/include/CLI/Error.hpp +++ b/include/CLI/Error.hpp @@ -275,7 +275,7 @@ class ArgumentMismatch : public ParseError { std::to_string(received)); } static ArgumentMismatch AtMost(std::string name, int num, std::size_t received) { - return ArgumentMismatch(name + ": At Most " + std::to_string(num) + " required but received " + + return ArgumentMismatch(name + ": At most " + std::to_string(num) + " required but received " + std::to_string(received)); } static ArgumentMismatch TypedAtLeast(std::string name, int num, std::string type) {