mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-12 01:10:42 +00:00
Userland: Fix typo in 'pro' help
This commit is contained in:
parent
6919639190
commit
8f392683c7
Notes:
sideshowbarker
2024-07-19 01:01:46 +09:00
Author: https://github.com/BenWiederhake Commit: https://github.com/SerenityOS/serenity/commit/8f392683c7b Pull-request: https://github.com/SerenityOS/serenity/pull/4342
1 changed files with 3 additions and 1 deletions
|
@ -146,7 +146,9 @@ int main(int argc, char** argv)
|
|||
bool save_at_provided_name = false;
|
||||
|
||||
Core::ArgsParser args_parser;
|
||||
args_parser.set_general_help("Download file from arbitrary ");
|
||||
args_parser.set_general_help(
|
||||
"Download a file from an arbitrary URL. This command uses ProtocolServer, "
|
||||
"and thus supports at least http, https, and gemini.");
|
||||
args_parser.add_option(save_at_provided_name, "Write to a file named as the remote file", nullptr, 'O');
|
||||
args_parser.add_positional_argument(url_str, "URL to download from", "url");
|
||||
args_parser.parse(argc, argv);
|
||||
|
|
Loading…
Reference in a new issue