*: 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

@@ -62,7 +62,7 @@ func mustLoadJWK(b string) *jose.JSONWebKey {
func mustBeErrNotFound(t *testing.T, kind string, err error) {
switch {
case err == nil:
t.Errorf("deleting non-existant %s should return an error", kind)
t.Errorf("deleting non-existent %s should return an error", kind)
case err != storage.ErrNotFound:
t.Errorf("deleting %s expected storage.ErrNotFound, got %v", kind, err)
}