fix typo in conn.go

This commit is contained in:
Attila Oláh 2014-11-03 16:48:34 +01:00
parent a6366fbf9d
commit 6af932933a
1 changed files with 1 additions and 1 deletions

View File

@ -520,7 +520,7 @@ func (c *Conn) WriteMessage(messageType int, data []byte) error {
// SetWriteDeadline sets the write deadline on the underlying network
// connection. After a write has timed out, the websocket state is corrupt and
// all future writes will return an error. A zero value for t means writes will
// not time out
// not time out.
func (c *Conn) SetWriteDeadline(t time.Time) error {
c.writeDeadline = t
return nil