From 20b4ee30ab3c13194486dcfe02663b29c3686638 Mon Sep 17 00:00:00 2001 From: Henri Koski Date: Tue, 6 Oct 2015 21:40:04 +0300 Subject: [PATCH] Small typo fix 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 7cc0496..ae25b75 100644 --- a/examples/chat/conn.go +++ b/examples/chat/conn.go @@ -88,7 +88,7 @@ func (c *connection) writePump() { } } -// serverWs handles websocket requests from the peer. +// serveWs 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)