mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-23 04:55:15 +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:
parent
0372f051e9
commit
ea9f2f80a1
Notes:
sideshowbarker
2024-07-18 01:38:35 +09:00
Author: https://github.com/BenWiederhake Commit: https://github.com/SerenityOS/serenity/commit/ea9f2f80a12 Pull-request: https://github.com/SerenityOS/serenity/pull/10655 Reviewed-by: https://github.com/linusg
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue