Made the language command-line option lowercase for consistency.

This commit is contained in:
2016-06-14 18:42:29 +02:00
parent fcdd3bba2b
commit 52fee6a4c1
3 changed files with 6 additions and 6 deletions

View File

@@ -21,7 +21,7 @@ int main(int argc, char **argv)
("help,h", "Display this help message.")
("version,v", "Display version information.")
("input,i", po::value<std::vector<std::string>>(), "Specify the PDDL or SAS input file.")
("language,l", po::value<std::string>(), "Specify the input language (SAS or PDDL). Omit for automatic detection.")
("language,l", po::value<std::string>(), "Specify the input language (sas or pddl). Omit for automatic detection.")
("warning-level", po::value<std::string>()->default_value("normal"), "Specify whether to output warnings normally (normal), to treat them as critical errors (error), or to ignore them (ignore).")
("color", po::value<std::string>()->default_value("auto"), "Specify whether to colorize the output (always, never, or auto).");