From e245a9a17f102581a8332b0d42bd324ed31f6a47 Mon Sep 17 00:00:00 2001 From: Vinicius Fortuna Date: Fri, 1 Nov 2024 16:38:23 -0600 Subject: [PATCH] Update x/examples/fetch/main.go Co-authored-by: J. Yi <93548144+jyyi1@users.noreply.github.com> --- x/examples/fetch/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/examples/fetch/main.go b/x/examples/fetch/main.go index 932764bd..cc945779 100644 --- a/x/examples/fetch/main.go +++ b/x/examples/fetch/main.go @@ -71,7 +71,7 @@ func overrideAddress(original string, newHost string, newPort string) (string, e func main() { verboseFlag := flag.Bool("v", false, "Enable debug output") - tlsKeyLogFlag := flag.String("tls-key-log", "", "Filename to write the TLS key log to allow for decryption on Wireshark.") + tlsKeyLogFlag := flag.String("tls-key-log", "", "Filename to write the TLS key log to allow for decryption on Wireshark") protoFlag := flag.String("proto", "h1", "HTTP version to use (h1, h2, h3)") transportFlag := flag.String("transport", "", "Transport config") addressFlag := flag.String("address", "", "Address to connect to. If empty, use the URL authority")