From fd2b745b1527b9155e6c337f20b2f0c2f4a885ef Mon Sep 17 00:00:00 2001 From: Jared Baker Date: Mon, 2 Dec 2024 15:48:54 -0500 Subject: [PATCH] transport/http: fix go doc typo --- transport/http/host.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transport/http/host.go b/transport/http/host.go index 6b290fec0..db9801bea 100644 --- a/transport/http/host.go +++ b/transport/http/host.go @@ -69,7 +69,7 @@ func ValidPortNumber(port string) bool { return true } -// ValidHostLabel returns whether the label is a valid RFC 3986 host abel. +// ValidHostLabel returns whether the label is a valid RFC 3986 host label. func ValidHostLabel(label string) bool { if l := len(label); l == 0 || l > 63 { return false