Skip to content

Commit

Permalink
Fix typo to run lint without error
Browse files Browse the repository at this point in the history
```
$ make release
[...]
/home/prkumar/work/go/bin/golangci-lint run
pkg/hosts/hosts.go:32:15: `unconditionnally` is a misspelling of `unconditionally` (misspell)
	// goodhosts unconditionnally uses this environment variable
```	             ^
  • Loading branch information
praveenkumar committed Nov 26, 2021
1 parent a6203a5 commit 80ec644
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/hosts/hosts.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ type Hosts struct {
}

func init() {
// goodhosts unconditionnally uses this environment variable
// goodhosts unconditionally uses this environment variable
// as an override for the hosts file to use. We don't want admin-helper
// to modify arbitrary file, so we have to unset it before calling into
// goodhosts.
Expand Down

0 comments on commit 80ec644

Please sign in to comment.