update comments

Signed-off-by: Will Wang <willww64@gmail.com>
This commit is contained in:
Will Wang 2024-07-24 15:15:59 +08:00
parent a85a37e3f3
commit 01182919b3
No known key found for this signature in database
GPG Key ID: 777CB89880638858
1 changed files with 2 additions and 2 deletions

View File

@ -167,12 +167,12 @@ func (configFile *ConfigFile) Save() (retErr error) {
return errors.Wrap(err, "error closing temp file")
}
// Handle situations where `configFile.Filename` is a symlink, and allow for dangling symlinks
// Handle situation where the configfile is a symlink, and allow for dangling symlinks
cfgFile := configFile.Filename
if f, err := filepath.EvalSymlinks(cfgFile); err == nil {
cfgFile = f
} else if os.IsNotExist(err) {
// extract the path from the error if `cfgFile` does not exist or is a dangling symlink
// extract the path from the error if the configfile does not exist or is a dangling symlink
cfgFile = err.(*os.PathError).Path
}