From a40af3a873b4598b1d3c0cbd077011d019d49187 Mon Sep 17 00:00:00 2001 From: Steven Powell Date: Mon, 12 Aug 2024 08:58:02 -0700 Subject: [PATCH] fix misspelling --- pkg/minikube/cruntime/docker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/minikube/cruntime/docker.go b/pkg/minikube/cruntime/docker.go index f22dc97385..4c27c11dcf 100644 --- a/pkg/minikube/cruntime/docker.go +++ b/pkg/minikube/cruntime/docker.go @@ -700,7 +700,7 @@ func AddDockerIO(name string) string { return addRegistryPreix(name, "docker.io") } func addRegistryPreix(name string, prefix string) string { - // we seperate the image name following this logic + // we separate the image name following this logic // https://pkg.go.dev/github.com/distribution/reference#ParseNormalizedNamed var reg, usr, img string p := strings.SplitN(name, "/", 2)