Merge pull request #100671 from Niekvdplas/spelling-mistakes

Fixed several spelling mistakes
This commit is contained in:
Kubernetes Prow Robot
2021-04-09 05:19:45 -07:00
committed by GitHub
26 changed files with 27 additions and 27 deletions

View File

@@ -169,7 +169,7 @@ func (jm *ControllerV2) sync(cronJobKey string) (*time.Duration, error) {
cronJob, err := jm.cronJobLister.CronJobs(ns).Get(name)
switch {
case errors.IsNotFound(err):
// may be cronjob is deleted, dont need to requeue this key
// may be cronjob is deleted, don't need to requeue this key
klog.V(4).InfoS("cronjob not found, may be it is deleted", "cronjob", klog.KRef(ns, name), "err", err)
return nil, nil
case err != nil: