*: fix comment typos found with github.com/client9/misspell

This commit is contained in:
Eric Chiang
2016-12-13 12:23:16 -08:00
parent 79c51f2983
commit fe196864c0
5 changed files with 5 additions and 5 deletions

View File

@@ -13,7 +13,7 @@ import (
"github.com/coreos/dex/version"
)
// apiVersion increases everytime a new call is added to the API. Clients should use this info
// apiVersion increases every time a new call is added to the API. Clients should use this info
// to determine if the server supports specific features.
const apiVersion = 0

View File

@@ -223,7 +223,7 @@ func (t *templates) oob(w http.ResponseWriter, code string) {
renderTemplate(w, t.oobTmpl, data)
}
// small io.Writer utilitiy to determine if executing the template wrote to the underlying response writer.
// small io.Writer utility to determine if executing the template wrote to the underlying response writer.
type writeRecorder struct {
wrote bool
w io.Writer