Skip to content

Commit 5ea588b

Browse files
authored
chore: fix problematic comments (#2030)
1 parent 7da0f0d commit 5ea588b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/utils/file/file.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ func CreateFileAndWriteContent(path string, content string) error {
179179
return nil
180180
}
181181

182-
// IsNotExistMkDir create a directory if it does not exist
182+
// IsNotExistCreateFile create a file if it does not exist
183183
func IsNotExistCreateFile(src string) error {
184184
if notExist := CheckNotExist(src); notExist {
185185
if err := CreateFile(src); err != nil {

0 commit comments

Comments
 (0)