From a5266484a222efc26bdbe89fb8c68e629d54124c Mon Sep 17 00:00:00 2001 From: Alex Buchanan Date: Thu, 31 Oct 2024 13:29:48 -0700 Subject: [PATCH] fix comment --- internal/cmd/local/k8s/cluster.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/cmd/local/k8s/cluster.go b/internal/cmd/local/k8s/cluster.go index 8799f7e..c04b994 100644 --- a/internal/cmd/local/k8s/cluster.go +++ b/internal/cmd/local/k8s/cluster.go @@ -117,8 +117,8 @@ func (k *kindCluster) Exists(ctx context.Context) bool { } // LoadImages pulls images from Docker Hub, and loads them into the kind cluster. -// This is a best-effort optimization, which is why it doesn't an error; -// it's possible that only some images will be loaded. +// This is a best-effort optimization, which is why it doesn't return an error. +// It's possible that only some images will be loaded. func (k *kindCluster) LoadImages(ctx context.Context, images []string) { err := k.loadImages(ctx, images) pterm.Debug.Printfln("failed to load images: %s", err)