File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -167,12 +167,12 @@ func (configFile *ConfigFile) Save() (retErr error) {
167167 return errors .Wrap (err , "error closing temp file" )
168168 }
169169
170- // Handle situations where `configFile.Filename` is a symlink, and allow for dangling symlinks
170+ // Handle situation where the configfile is a symlink, and allow for dangling symlinks
171171 cfgFile := configFile .Filename
172172 if f , err := filepath .EvalSymlinks (cfgFile ); err == nil {
173173 cfgFile = f
174174 } else if os .IsNotExist (err ) {
175- // extract the path from the error if `cfgFile` does not exist or is a dangling symlink
175+ // extract the path from the error if the configfile does not exist or is a dangling symlink
176176 cfgFile = err .(* os.PathError ).Path
177177 }
178178
You can’t perform that action at this time.
0 commit comments