git » go-net » commit f608d98

icmp: fix a typo

author Mikio Hara
2016-04-11 10:08:49 UTC
committer Mikio Hara
2016-04-11 18:41:27 UTC
parent edd5b7d9bd793a55ab6c148008677535d9af6c18

icmp: fix a typo

Change-Id: Icd29cd883dab0c916e2285d6053074e97771b840
Reviewed-on: https://go-review.googlesource.com/21833
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>

icmp/endpoint.go +1 -1

diff --git a/icmp/endpoint.go b/icmp/endpoint.go
index 0213d1a..a68bfb0 100644
--- a/icmp/endpoint.go
+++ b/icmp/endpoint.go
@@ -51,7 +51,7 @@ func (c *PacketConn) ReadFrom(b []byte) (int, net.Addr, error) {
 	}
 	// Please be informed that ipv4.NewPacketConn enables
 	// IP_STRIPHDR option by default on Darwin.
-	// See golang.org/issue/9395 for futher information.
+	// See golang.org/issue/9395 for further information.
 	if runtime.GOOS == "darwin" && c.p4 != nil {
 		n, _, peer, err := c.p4.ReadFrom(b)
 		return n, peer, err