mirror of https://github.com/golang/go.git
net/netip: fix method name in {AddrPort,Prefix}.IsValid godoc
In CL 339309 these were probably copied from the respective godoc comments in package inet.af/netaddr, also see https://pkg.go.dev/inet.af/netaddr#IPPort.IsValid and https://pkg.go.dev/inet.af/netaddr#IPPrefix.IsValid In net/netip the methods are named Addr. Adjust the godoc comments accordingly. Change-Id: Icfe1d73b647c2e195d96cd5b1073a734905134af Reviewed-on: https://go-review.googlesource.com/c/go/+/421995 Auto-Submit: Tobias Klauser <tobias.klauser@gmail.com> Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> Reviewed-by: Ian Lance Taylor <iant@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
This commit is contained in:
parent
228f891c90
commit
5639fcae7f
|
|
@ -1114,7 +1114,7 @@ func MustParseAddrPort(s string) AddrPort {
|
|||
// isZero reports whether p is the zero AddrPort.
|
||||
func (p AddrPort) isZero() bool { return p == AddrPort{} }
|
||||
|
||||
// IsValid reports whether p.IP() is valid.
|
||||
// IsValid reports whether p.Addr() is valid.
|
||||
// All ports are valid, including zero.
|
||||
func (p AddrPort) IsValid() bool { return p.ip.IsValid() }
|
||||
|
||||
|
|
@ -1276,7 +1276,7 @@ func (p Prefix) Addr() Addr { return p.ip }
|
|||
// It reports -1 if invalid.
|
||||
func (p Prefix) Bits() int { return int(p.bits) }
|
||||
|
||||
// IsValid reports whether p.Bits() has a valid range for p.IP().
|
||||
// IsValid reports whether p.Bits() has a valid range for p.Addr().
|
||||
// If p.Addr() is the zero Addr, IsValid returns false.
|
||||
// Note that if p is the zero Prefix, then p.IsValid() == false.
|
||||
func (p Prefix) IsValid() bool { return !p.ip.isZero() && p.bits >= 0 && int(p.bits) <= p.ip.BitLen() }
|
||||
|
|
|
|||
Loading…
Reference in New Issue