From 0a52d61198038fcb795e39acd8712f71d56eacca Mon Sep 17 00:00:00 2001 From: Christian Stefanescu Date: Thu, 11 Sep 2014 08:36:21 +0200 Subject: [PATCH] fixed typo in comment --- examples/chat/conn.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/chat/conn.go b/examples/chat/conn.go index 916bada..7cc0496 100644 --- a/examples/chat/conn.go +++ b/examples/chat/conn.go @@ -88,7 +88,7 @@ func (c *connection) writePump() { } } -// serverWs handles webocket requests from the peer. +// serverWs handles websocket requests from the peer. func serveWs(w http.ResponseWriter, r *http.Request) { if r.Method != "GET" { http.Error(w, "Method not allowed", 405)