From ea9f2f80a12bb45a1266be6364095e03f5e69690 Mon Sep 17 00:00:00 2001 From: Ben Wiederhake Date: Thu, 28 Oct 2021 22:08:42 +0200 Subject: [PATCH] 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. --- Userland/Libraries/LibCore/ArgsParser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibCore/ArgsParser.cpp b/Userland/Libraries/LibCore/ArgsParser.cpp index 31ef98803d..2988189906 100644 --- a/Userland/Libraries/LibCore/ArgsParser.cpp +++ b/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); }