net: remove comment fragments

I have no idea how I meant to complete that sentence.

R=r, r2
CC=golang-dev
https://golang.org/cl/4191046
diff --git a/src/pkg/net/net.go b/src/pkg/net/net.go
index c0c1c3b..04a898a 100644
--- a/src/pkg/net/net.go
+++ b/src/pkg/net/net.go
@@ -31,7 +31,6 @@
 	Write(b []byte) (n int, err os.Error)
 
 	// Close closes the connection.
-	// The error returned is an os.Error to satisfy io.Closer;
 	Close() os.Error
 
 	// LocalAddr returns the local network address.
@@ -83,7 +82,6 @@
 	WriteTo(b []byte, addr Addr) (n int, err os.Error)
 
 	// Close closes the connection.
-	// The error returned is an os.Error to satisfy io.Closer;
 	Close() os.Error
 
 	// LocalAddr returns the local network address.
@@ -112,7 +110,6 @@
 	Accept() (c Conn, err os.Error)
 
 	// Close closes the listener.
-	// The error returned is an os.Error to satisfy io.Closer;
 	Close() os.Error
 
 	// Addr returns the listener's network address.