From 4400cc8045f852d934947d290e6770cf0fb98482 Mon Sep 17 00:00:00 2001 From: Jean-Martin Archer Date: Fri, 18 Sep 2020 21:07:46 -0700 Subject: [PATCH] fix another typo --- score/cronjob/cronjob.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/score/cronjob/cronjob.go b/score/cronjob/cronjob.go index 3f1d08b8..5cc5679e 100644 --- a/score/cronjob/cronjob.go +++ b/score/cronjob/cronjob.go @@ -14,7 +14,7 @@ func cronJobHasDeadline(job v1beta1.CronJob) (score scorecard.TestScore) { if job.Spec.StartingDeadlineSeconds == nil { score.Grade = scorecard.GradeCritical score.AddComment("", "The CronJob should have startingDeadlineSeconds configured", - "This makes sure that jobs are automatically cancelled if they can not be scheduler") + "This makes sure that jobs are automatically cancelled if they can not be scheduled") return }