summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDelapouite <delapouite@gmail.com>2017-09-07 21:45:46 +0200
committerDelapouite <delapouite@gmail.com>2017-09-07 21:45:46 +0200
commit3ed0ac8f6207e43e05fa0f96fa9294cdc2940c8d (patch)
treef83a303e20959143c47776853887179fd7e54b98 /src
parent8e3e5b10c1e05cc174a8c1ddf44dc7bc3fd095e4 (diff)
Fix typo: to many → too many
Diffstat (limited to 'src')
-rw-r--r--src/option_types.hh2
1 files changed, 1 insertions, 1 deletions
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<Types...>& 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<sizeof...(Types)-1, Types...>::from_string(elems, opt);
}