1
0
mirror of https://github.com/golang/go synced 2024-11-20 05:44:44 -07:00

net: fix typo

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/5782063
This commit is contained in:
Mikio Hara 2012-03-09 11:50:38 +09:00
parent 08a5d73940
commit 26fa1c8248

View File

@ -78,7 +78,7 @@ func (ifi *Interface) MulticastAddrs() ([]Addr, error) {
return interfaceMulticastAddrTable(ifi.Index)
}
// Interfaces returns a list of the systems's network interfaces.
// Interfaces returns a list of the system's network interfaces.
func Interfaces() ([]Interface, error) {
return interfaceTable(0)
}