From b726dfe8a90fa7490010105115b8ce9395d4bec1 Mon Sep 17 00:00:00 2001 From: Nicholas Seemiller Date: Mon, 24 Oct 2022 14:02:09 -0600 Subject: [PATCH] Fix grammar in comment Change `these is` to `these are` --- .../testdata/project/controllers/cronjob_controller.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/book/src/cronjob-tutorial/testdata/project/controllers/cronjob_controller.go b/docs/book/src/cronjob-tutorial/testdata/project/controllers/cronjob_controller.go index ded954cdb6e..036fcaebad2 100644 --- a/docs/book/src/cronjob-tutorial/testdata/project/controllers/cronjob_controller.go +++ b/docs/book/src/cronjob-tutorial/testdata/project/controllers/cronjob_controller.go @@ -271,7 +271,7 @@ func (r *CronJobReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ct around. */ - // NB: deleting these is "best effort" -- if we fail on a particular one, + // NB: deleting these are "best effort" -- if we fail on a particular one, // we won't requeue just to finish the deleting. if cronJob.Spec.FailedJobsHistoryLimit != nil { sort.Slice(failedJobs, func(i, j int) bool {