From 5ea588b813b3737951f5f7d13be5c83d6d5b8aa2 Mon Sep 17 00:00:00 2001 From: David Wood Date: Wed, 4 Dec 2024 11:04:17 +0800 Subject: [PATCH] chore: fix problematic comments (#2030) --- pkg/utils/file/file.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/utils/file/file.go b/pkg/utils/file/file.go index 6a10144e3..2abf84ee8 100644 --- a/pkg/utils/file/file.go +++ b/pkg/utils/file/file.go @@ -179,7 +179,7 @@ func CreateFileAndWriteContent(path string, content string) error { return nil } -// IsNotExistMkDir create a directory if it does not exist +// IsNotExistCreateFile create a file if it does not exist func IsNotExistCreateFile(src string) error { if notExist := CheckNotExist(src); notExist { if err := CreateFile(src); err != nil {