Browse Source

Merge pull request #27 from AeroNotix/patch-1

Typo fix
Gary Burd 11 years ago
parent
commit
10a95d14a3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/filewatch/main.go

+ 1 - 1
examples/filewatch/main.go

@@ -134,7 +134,7 @@ func serveHome(w http.ResponseWriter, r *http.Request) {
 		return
 		return
 	}
 	}
 	if r.Method != "GET" {
 	if r.Method != "GET" {
-		http.Error(w, "Method nod allowed", 405)
+		http.Error(w, "Method not allowed", 405)
 		return
 		return
 	}
 	}
 	w.Header().Set("Content-Type", "text/html; charset=utf-8")
 	w.Header().Set("Content-Type", "text/html; charset=utf-8")