From 6af932933af5c52b246e39cb3f02d469cad00cf0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Attila=20Ol=C3=A1h?= Date: Mon, 3 Nov 2014 16:48:34 +0100 Subject: [PATCH] fix typo in conn.go --- conn.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conn.go b/conn.go index 73c64a4..dc7d111 100644 --- a/conn.go +++ b/conn.go @@ -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