linting: moar fixes

This commit is contained in:
Zach Ramsay
2017-10-03 19:11:55 -04:00
committed by Ethan Buchman
parent d7cb291fb2
commit a15c7f221d
8 changed files with 14 additions and 8 deletions

View File

@ -782,5 +782,5 @@ func writeListOfEndpoints(w http.ResponseWriter, r *http.Request, funcMap map[st
buf.WriteString("</body></html>")
w.Header().Set("Content-Type", "text/html")
w.WriteHeader(200)
_, _ := w.Write(buf.Bytes()) // error ignored
_, _ = w.Write(buf.Bytes()) // error ignored
}