diff options
author | Conrad Meyer <cemeyer@cs.washington.edu> | 2010-05-05 09:55:11 -0700 |
---|---|---|
committer | Conrad Meyer <cemeyer@cs.washington.edu> | 2010-05-05 09:55:11 -0700 |
commit | 773d17e331fcf20203f800920d53e7f78534e6b4 (patch) | |
tree | 8218189d8c24ae375b0640840df0b699b0698d9b | |
parent | b874d985568d7c78f52f229a50ec60ae3f82e5de (diff) | |
download | golang-773d17e331fcf20203f800920d53e7f78534e6b4.tar.gz |
Fix a typo in net/unixsock
R=golang-dev, gri
CC=golang-dev
http://codereview.appspot.com/1113041
Committer: Robert Griesemer <gri@golang.org>
-rw-r--r-- | src/pkg/net/unixsock.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/net/unixsock.go b/src/pkg/net/unixsock.go index 7c0ae1ee6..93535130a 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") |