From: Conrad Meyer Date: Wed, 5 May 2010 16:55:11 +0000 (-0700) Subject: Fix a typo in net/unixsock X-Git-Tag: weekly.2010-05-27~115 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=5789c86fc09354279c2d3531b9349f11e2bee726;p=gostls13.git Fix a typo in net/unixsock R=golang-dev, gri CC=golang-dev https://golang.org/cl/1113041 --- diff --git a/src/pkg/net/unixsock.go b/src/pkg/net/unixsock.go index 7c0ae1ee62..93535130a2 100644 --- a/src/pkg/net/unixsock.go +++ b/src/pkg/net/unixsock.go @@ -278,7 +278,7 @@ func (c *UnixConn) WriteTo(b []byte, addr Addr) (n int, err os.Error) { } // DialUnix connects to the remote address raddr on the network net, -// which must be "unix" or "unixdgram". If laddr is not nil, it is used +// which must be "unix" or "unixgram". If laddr is not nil, it is used // as the local address for the connection. func DialUnix(net string, laddr, raddr *UnixAddr) (c *UnixConn, err os.Error) { fd, e := unixSocket(net, laddr, raddr, "dial")