mirror of
https://github.com/golang/go
synced 2024-11-22 04:14:42 -07:00
net: fix comments
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5557059
This commit is contained in:
parent
f44304ee63
commit
2356e43827
@ -24,12 +24,12 @@ type Addr interface {
|
|||||||
type Conn interface {
|
type Conn interface {
|
||||||
// Read reads data from the connection.
|
// Read reads data from the connection.
|
||||||
// Read can be made to time out and return a net.Error with Timeout() == true
|
// Read can be made to time out and return a net.Error with Timeout() == true
|
||||||
// after a fixed time limit; see SetTimeout and SetReadTimeout.
|
// after a fixed time limit; see SetDeadline and SetReadDeadline.
|
||||||
Read(b []byte) (n int, err error)
|
Read(b []byte) (n int, err error)
|
||||||
|
|
||||||
// Write writes data to the connection.
|
// Write writes data to the connection.
|
||||||
// Write can be made to time out and return a net.Error with Timeout() == true
|
// Write can be made to time out and return a net.Error with Timeout() == true
|
||||||
// after a fixed time limit; see SetTimeout and SetWriteTimeout.
|
// after a fixed time limit; see SetDeadline and SetWriteDeadline.
|
||||||
Write(b []byte) (n int, err error)
|
Write(b []byte) (n int, err error)
|
||||||
|
|
||||||
// Close closes the connection.
|
// Close closes the connection.
|
||||||
|
Loading…
Reference in New Issue
Block a user