Shelikhoo 9 年之前
父節點
當前提交
00aeb29e46
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      transport/internet/ws/wsconn.go

+ 2 - 2
transport/internet/ws/wsconn.go

@@ -40,13 +40,13 @@ func (ws *wsconn) Read(b []byte) (n int, err error) {
 		return nil
 		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:=func(){
 		func1()
 		func1()
 	  }
 	  }
 		won't work, failed to compile for it can't find 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,
 		readNext could have been called before the actual defination was made,
 		This is very unlikely.
 		This is very unlikely.
 	*/
 	*/