Fix small inconsistency in example.

This commit is contained in:
Daniel Darabos 2014-02-15 13:48:14 +01:00
parent 92334662ba
commit 1b37ccbb61
1 changed files with 1 additions and 1 deletions

2
doc.go
View File

@ -11,7 +11,7 @@
// Conn:
//
// func handler(w http.ResponseWriter, r *http.Request) {
// ws, err := websocket.Upgrade(w, r, nil, 1024, 1024)
// conn, err := websocket.Upgrade(w, r, nil, 1024, 1024)
// if _, ok := err.(websocket.HandshakeError); ok {
// http.Error(w, "Not a websocket handshake", 400)
// return