From 2c3842bfe673d0265af5ea6908de36c9cc3feed0 Mon Sep 17 00:00:00 2001 From: AnotherTest Date: Fri, 2 Oct 2020 19:53:47 +0330 Subject: [PATCH] Shell: Fix badly worded help string for '--format' --- Shell/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shell/main.cpp b/Shell/main.cpp index d7ad157fcf..65c12da552 100644 --- a/Shell/main.cpp +++ b/Shell/main.cpp @@ -111,7 +111,7 @@ int main(int argc, char** argv) Core::ArgsParser parser; parser.add_option(command_to_run, "String to read commands from", "command-string", 'c', "command-string"); parser.add_option(skip_rc_files, "Skip running shellrc files", "skip-shellrc", 0); - parser.add_option(format, "File to format", "format", 0, "file"); + parser.add_option(format, "Format the given file into stdout and exit", "format", 0, "file"); parser.add_option(should_format_live, "Enable live formatting", "live-formatting", 'f'); parser.add_positional_argument(file_to_read_from, "File to read commands from", "file", Core::ArgsParser::Required::No); parser.add_positional_argument(script_args, "Extra argumets to pass to the script (via $* and co)", "argument", Core::ArgsParser::Required::No);