diff --git a/examples/filewatch/main.go b/examples/filewatch/main.go index bd6c06b..a2c7b85 100644 --- a/examples/filewatch/main.go +++ b/examples/filewatch/main.go @@ -134,7 +134,7 @@ func serveHome(w http.ResponseWriter, r *http.Request) { return } if r.Method != "GET" { - http.Error(w, "Method nod allowed", 405) + http.Error(w, "Method not allowed", 405) return } w.Header().Set("Content-Type", "text/html; charset=utf-8")