From d2171abb2ceb2e092975bf3292e42bff4f82467b Mon Sep 17 00:00:00 2001 From: Thomas Keppler Date: Wed, 21 Dec 2022 16:11:36 +0100 Subject: pro: Add header format to argument help --- Userland/Utilities/pro.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 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(':'); -- cgit v1.2.3