浏览代码

websocket: fix typo

Small fix missed in CL 6446061.

R=golang-dev, adg
CC=golang-dev
https://golang.org/cl/6457047
Francisco Souza 13 年之前
父节点
当前提交
dbb2a3601f
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      websocket/hixie.go

+ 2 - 2
websocket/hixie.go

@@ -332,9 +332,9 @@ func generateKey3() (key []byte) {
 	return
 }
 
-// Cilent handshake described in (soon obsolete)
+// Client handshake described in (soon obsolete)
 // draft-ietf-hybi-thewebsocket-protocol-00
-// (draft-hixie-thewebsocket-protocol-76) 
+// (draft-hixie-thewebsocket-protocol-76)
 func hixie76ClientHandshake(config *Config, br *bufio.Reader, bw *bufio.Writer) (err error) {
 	switch config.Version {
 	case ProtocolVersionHixie76, ProtocolVersionHybi00: