diff --git a/pkg/container/client.go b/pkg/container/client.go index ce694d0..fd7f81e 100644 --- a/pkg/container/client.go +++ b/pkg/container/client.go @@ -295,7 +295,7 @@ func (client dockerClient) PullImage(ctx context.Context, container Container) e log.WithFields(fields).Debugf("Checking if pull is needed") if match, err := digest.CompareDigest(container, opts.RegistryAuth); err != nil { - log.Info("Could not do a head request, falling back to regulara pull.") + log.Info("Could not do a head request, falling back to doing a regular pull.") log.Debugf("Reason: %s", err.Error()) } else if match { log.Debug("No pull needed. Skipping image.")