diff options
author | Thomas Keppler <winfr34k@gmail.com> | 2022-12-21 16:11:36 +0100 |
---|---|---|
committer | Ali Mohammad Pur <Ali.mpfard@gmail.com> | 2022-12-26 08:06:21 +0330 |
commit | d2171abb2ceb2e092975bf3292e42bff4f82467b (patch) | |
tree | 030fe5bd75f806d0c8287a2d143092a5b59e3be0 /Userland | |
parent | ca134e8bfa9c26bd5bb9aab2bd044e4d6f759ae4 (diff) | |
download | serenity-d2171abb2ceb2e092975bf3292e42bff4f82467b.zip |
pro: Add header format to argument help
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/Utilities/pro.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Utilities/pro.cpp b/Userland/Utilities/pro.cpp index bace162413..62f20c39c3 100644 --- a/Userland/Utilities/pro.cpp +++ b/Userland/Utilities/pro.cpp @@ -173,7 +173,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments) .help_string = "Add a header entry to the request", .long_name = "header", .short_name = 'H', - .value_name = "header-value", + .value_name = "key:value", .accept_value = [&](auto* s) { StringView header { s, strlen(s) }; auto split = header.find(':'); |