From 3ed0ac8f6207e43e05fa0f96fa9294cdc2940c8d Mon Sep 17 00:00:00 2001 From: Delapouite Date: Thu, 7 Sep 2017 21:45:46 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20typo:=20to=20many=20=E2=86=92=20too=20man?= =?UTF-8?q?y?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/option_types.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/option_types.hh b/src/option_types.hh index 01d7ea3b..0433d4d9 100644 --- a/src/option_types.hh +++ b/src/option_types.hh @@ -197,7 +197,7 @@ void option_from_string(StringView str, std::tuple& opt) if (elems.size() != sizeof...(Types)) throw runtime_error(elems.size() < sizeof...(Types) ? "not enough elements in tuple" - : "to many elements in tuple"); + : "too many elements in tuple"); TupleOptionDetail::from_string(elems, opt); }