Skip to content

Commit

Permalink
chore: fix problematic comments (#2030)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidwoood authored Dec 4, 2024
1 parent 7da0f0d commit 5ea588b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/utils/file/file.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 5ea588b

Please sign in to comment.