1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:17:45 +00:00

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

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);
}