Browse Source

Userland: Fix typo in 'pro' help

Ben Wiederhake 4 năm trước cách đây
mục cha
commit
8f392683c7
1 tập tin đã thay đổi với 3 bổ sung1 xóa
  1. 3 1
      Userland/pro.cpp

+ 3 - 1
Userland/pro.cpp

@@ -146,7 +146,9 @@ int main(int argc, char** argv)
     bool save_at_provided_name = false;
     bool save_at_provided_name = false;
 
 
     Core::ArgsParser args_parser;
     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_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.add_positional_argument(url_str, "URL to download from", "url");
     args_parser.parse(argc, argv);
     args_parser.parse(argc, argv);