summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
authorThomas Keppler <winfr34k@gmail.com>2022-12-21 16:11:36 +0100
committerAli Mohammad Pur <Ali.mpfard@gmail.com>2022-12-26 08:06:21 +0330
commitd2171abb2ceb2e092975bf3292e42bff4f82467b (patch)
tree030fe5bd75f806d0c8287a2d143092a5b59e3be0 /Userland
parentca134e8bfa9c26bd5bb9aab2bd044e4d6f759ae4 (diff)
downloadserenity-d2171abb2ceb2e092975bf3292e42bff4f82467b.zip
pro: Add header format to argument help
Diffstat (limited to 'Userland')
-rw-r--r--Userland/Utilities/pro.cpp2
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(':');