From 39b8e819a8b3ff7e788d22d9520dc48c215825c3 Mon Sep 17 00:00:00 2001 From: suntianyuan Date: Fri, 5 Jul 2019 11:37:02 +0800 Subject: [PATCH] fix: golint error of clientgo Kubernetes-commit: 853cf2d8969e49ffb5fe42c0d867edd2396e7a68 --- util/testing/tmpdir.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/testing/tmpdir.go b/util/testing/tmpdir.go index 3b2d885f..6e476f2c 100644 --- a/util/testing/tmpdir.go +++ b/util/testing/tmpdir.go @@ -33,7 +33,7 @@ func MkTmpdir(prefix string) (string, error) { return tmpDir, nil } -// MkTmpdir does the same work as "MkTmpdir", except in case of +// MkTmpdirOrDie does the same work as "MkTmpdir", except in case of // errors, it'll trigger a panic. func MkTmpdirOrDie(prefix string) string { tmpDir, err := MkTmpdir(prefix)