Updated kube-proxy error strings to not use capitals/punctuation

This commit is contained in:
Vallery Lancey
2019-01-27 14:08:54 -08:00
parent d8369fd391
commit 3bb5914548
3 changed files with 4 additions and 4 deletions

View File

@@ -129,7 +129,7 @@ func isSysFSWritable() (bool, error) {
return false, errReadOnlySysFS
}
return false, errors.New("No sysfs mounted")
return false, errors.New("no sysfs mounted")
}
func readIntStringFile(filename string) (int, error) {