diff options
-rw-r--r-- | src/option.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/option.h b/src/option.h index b6e55a38..0d6c5140 100644 --- a/src/option.h +++ b/src/option.h @@ -172,7 +172,7 @@ public: if (args.size() < 2) throw_(std::runtime_error, _f("No argument provided for %1%") % desc()); else if (args.size() > 2) - throw_(std::runtime_error, _f("To many arguments provided for %1%") % desc()); + throw_(std::runtime_error, _f("Too many arguments provided for %1%") % desc()); else if (! args[0].is_string()) throw_(std::runtime_error, _f("Context argument for %1% not a string") % desc()); on(args.get<string>(0), args.get<string>(1)); |