LibCore: Make ArgsParser '--help' description more general

Now that the output may end up in Markdown files (and thus the website),
the help message should no longer be self-referential.
This commit is contained in:
Ben Wiederhake 2021-10-28 22:08:42 +02:00 committed by Linus Groh
parent 0372f051e9
commit ea9f2f80a1
Notes: sideshowbarker 2024-07-18 01:38:35 +09:00

View file

@ -27,7 +27,7 @@ namespace Core {
ArgsParser::ArgsParser()
{
add_option(m_show_help, "Display this message", "help", 0);
add_option(m_show_help, "Display help message and exit", "help", 0);
add_option(m_show_version, "Print version", "version", 0);
}