From 5789c86fc09354279c2d3531b9349f11e2bee726 Mon Sep 17 00:00:00 2001 From: Conrad Meyer Date: Wed, 5 May 2010 09:55:11 -0700 Subject: [PATCH] Fix a typo in net/unixsock R=golang-dev, gri CC=golang-dev https://golang.org/cl/1113041 --- src/pkg/net/unixsock.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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") -- 2.50.0