From 0a2f4b715bdf4e23d122231c5e6f1bdaa4259437 Mon Sep 17 00:00:00 2001 From: David Wood Date: Mon, 21 Oct 2024 14:48:43 +0800 Subject: [PATCH] chore: fix problematic comments --- 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 {