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 7c0ae1e..9353513 100644
--- a/src/pkg/net/unixsock.go
+++ b/src/pkg/net/unixsock.go
@@ -278,7 +278,7 @@
 }
 
 // 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")