Skip to content

Commit 9dc53c0

Browse files
author
Gaku Ueda
committed
Fixed broken HTML for autobahn test server.
1 parent 9007e29 commit 9dc53c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/autobahn/server.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ func serveHome(w http.ResponseWriter, r *http.Request) {
147147
return
148148
}
149149
w.Header().Set("Content-Type", "text/html; charset=utf-8")
150-
io.WriteString(w, "<html><body>Echo Server</body></html")
150+
io.WriteString(w, "<html><body>Echo Server</body></html>")
151151
}
152152

153153
var addr = flag.String("addr", ":9000", "http service address")

0 commit comments

Comments
 (0)