浏览代码

Merge pull request #53 from gaku/master

Fixed broken HTML for autobahn test server.
Gary Burd 11 年之前
父节点
当前提交
1f87405cd9
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      examples/autobahn/server.go

+ 1 - 1
examples/autobahn/server.go

@@ -147,7 +147,7 @@ func serveHome(w http.ResponseWriter, r *http.Request) {
 		return
 	}
 	w.Header().Set("Content-Type", "text/html; charset=utf-8")
-	io.WriteString(w, "<html><body>Echo Server</body></html")
+	io.WriteString(w, "<html><body>Echo Server</body></html>")
 }
 
 var addr = flag.String("addr", ":9000", "http service address")