small nit in the annotations

This commit is contained in:
tianshapjq 2017-12-12 14:30:24 +08:00
parent ee13444144
commit 84f7ac1f11

View File

@ -43,7 +43,7 @@ type OSInterface interface {
// RealOS is used to dispatch the real system level operations.
type RealOS struct{}
// MkDir will will call os.Mkdir to create a directory.
// MkdirAll will call os.MkdirAll to create a directory.
func (RealOS) MkdirAll(path string, perm os.FileMode) error {
return os.MkdirAll(path, perm)
}