diff --git a/client/pkg/fileutil/fileutil.go b/client/pkg/fileutil/fileutil.go index 9719f0327cb..1887264eca2 100644 --- a/client/pkg/fileutil/fileutil.go +++ b/client/pkg/fileutil/fileutil.go @@ -46,7 +46,7 @@ func IsDirWriteable(dir string) error { // does not exists. TouchDirAll also ensures the given directory is writable. func TouchDirAll(lg *zap.Logger, dir string) error { // If path is already a directory, MkdirAll does nothing and returns nil, so, - // first check if dir exist with an expected permission mode. + // first check if dir exists with an expected permission mode. if Exist(dir) { err := CheckDirPermission(dir, PrivateDirMode) if err != nil {