* fix duplicated 'the'

* fix typo found by misspell
This commit is contained in:
Kenshi Kamata
2019-08-28 02:55:09 +09:00
committed by Aaron Schlesinger
parent 054edde824
commit 667b9fdf65
6 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -130,7 +130,7 @@ func (c *Config) TLSCertFiles() (cert, key string, err error) {
}
if keyFile.Mode()&077 != 0 && runtime.GOOS != "windows" {
return "", "", fmt.Errorf("TLSKeyFile should not be accessable by others")
return "", "", fmt.Errorf("TLSKeyFile should not be accessible by others")
}
return certFile.Name(), keyFile.Name(), nil