From 84f7ac1f1175dc4a2a1e25795e1f52b05cf51ad4 Mon Sep 17 00:00:00 2001 From: tianshapjq Date: Tue, 12 Dec 2017 14:30:24 +0800 Subject: [PATCH] small nit in the annotations --- pkg/kubelet/container/os.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/kubelet/container/os.go b/pkg/kubelet/container/os.go index 6126063b308..bd27ae9f079 100644 --- a/pkg/kubelet/container/os.go +++ b/pkg/kubelet/container/os.go @@ -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) }