Commit 2356e438 authored by Mikio Hara's avatar Mikio Hara

net: fix comments

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/5557059
parent f44304ee
...@@ -24,12 +24,12 @@ type Addr interface { ...@@ -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.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment