From ff7e331bb2f3fc2e23fe9b139889d40cd3b7182d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Paj=C4=85k?= Date: Fri, 8 Dec 2023 09:23:18 +0100 Subject: [PATCH] Update baggage.go --- baggage/baggage.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/baggage/baggage.go b/baggage/baggage.go index 57e3d931ff2..f7866cfd94a 100644 --- a/baggage/baggage.go +++ b/baggage/baggage.go @@ -531,8 +531,7 @@ func (b Baggage) String() string { return strings.Join(members, listDelimiter) } -// parsePropertyInternal attempts to decode a Property from the passed string which must ensure it follows the spec -// at https://www.w3.org/TR/baggage/ +// parsePropertyInternal attempts to decode a Property from the passed string. func parsePropertyInternal(s string) (p Property, ok bool) { index := skipSpace(s, 0)