mirror of
https://github.com/golang/go
synced 2024-11-22 04:44:39 -07:00
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
This commit is contained in:
parent
f2852ba618
commit
dd7403b1b8
@ -31,7 +31,6 @@ type Conn interface {
|
||||
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 @@ type PacketConn interface {
|
||||
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 @@ type Listener interface {
|
||||
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.
|
||||
|
Loading…
Reference in New Issue
Block a user