From 00aeb29e46e684f7cb7654513cdb051224c5aeee Mon Sep 17 00:00:00 2001 From: Shelikhoo Date: Mon, 15 Aug 2016 12:31:55 +0800 Subject: [PATCH] typo --- transport/internet/ws/wsconn.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/transport/internet/ws/wsconn.go b/transport/internet/ws/wsconn.go index 08016da6..e242eef2 100644 --- a/transport/internet/ws/wsconn.go +++ b/transport/internet/ws/wsconn.go @@ -40,13 +40,13 @@ func (ws *wsconn) Read(b []byte) (n int, err error) { return nil } - /*It seems golang's support for recursive in anonymous func it yet to complete. + /*It seems golang's support for recursive in anonymous func is yet to complete. func1:=func(){ func1() } won't work, failed to compile for it can't find func1. - Should following work around panic, + Should following workaround panic, readNext could have been called before the actual defination was made, This is very unlikely. */