Skip to content

Commit b28762e

Browse files
committed
linter warning fix
1 parent 2b183fb commit b28762e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/minikube/registry/drvs/krunkit/krunkit.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ func configure(cfg config.ClusterConfig, n config.Node) (interface{}, error) {
8787

8888
func status() registry.State {
8989
if runtime.GOOS != "darwin" && runtime.GOARCH != "arm64" {
90-
err := errors.New("The krunkit driver is only supported on macOS arm64 machines")
90+
err := errors.New("the krunkit driver is only supported on macOS arm64 machines")
9191
return registry.State{Error: err, Fix: "Use another driver", Doc: docURL}
9292
}
9393
if _, err := exec.LookPath("krunkit"); err != nil {

0 commit comments

Comments
 (0)