Prechádzať zdrojové kódy

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.
Ben Wiederhake 3 rokov pred
rodič
commit
ea9f2f80a1
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      Userland/Libraries/LibCore/ArgsParser.cpp

+ 1 - 1
Userland/Libraries/LibCore/ArgsParser.cpp

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