From 80ec644ef248b4c5145c866f1dc7722a33b029ab Mon Sep 17 00:00:00 2001 From: Praveen Kumar Date: Fri, 26 Nov 2021 14:13:18 +0530 Subject: [PATCH] Fix typo to run lint without error ``` $ 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 ``` ^ --- pkg/hosts/hosts.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/hosts/hosts.go b/pkg/hosts/hosts.go index 149f7c3e..224f4ab7 100644 --- a/pkg/hosts/hosts.go +++ b/pkg/hosts/hosts.go @@ -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.