From ae0242c6d61fc0e80c58113a70db74829f6aa12c Mon Sep 17 00:00:00 2001 From: hitzhangjie Date: Sat, 7 Aug 2021 01:57:02 +0800 Subject: [PATCH] net: update IP.String doc to reflect RFC 5952 conformance Fixes #47394 --- src/net/ip.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/net/ip.go b/src/net/ip.go index d39aa66be94..b016bef144a 100644 --- a/src/net/ip.go +++ b/src/net/ip.go @@ -308,9 +308,8 @@ func ubtoa(dst []byte, start int, v byte) int { // It returns one of 4 forms: // - "", if ip has length 0 // - dotted decimal ("192.0.2.1"), if ip is an IPv4 or IP4-mapped IPv6 address -// - IPv6 ("2001:db8::1"), if ip is a valid IPv6 address +// - IPv6 conforming to RFC 5952 ("2001:db8::1"), if ip is a valid IPv6 address // - the hexadecimal form of ip, without punctuation, if no other cases apply -// For IPv6, the returned forms conform to RFC 4291 and RFC 5952. func (ip IP) String() string { p := ip