From 941be1576221b71980fcdf4181fc52893c3b964b Mon Sep 17 00:00:00 2001 From: stefanprodan Date: Sat, 23 Mar 2019 11:25:31 +0200 Subject: [PATCH] Fix typo in comments --- pkg/controller/scheduler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/controller/scheduler.go b/pkg/controller/scheduler.go index ad8c014c..0a8e92b1 100644 --- a/pkg/controller/scheduler.go +++ b/pkg/controller/scheduler.go @@ -25,7 +25,7 @@ func (c *Controller) scheduleCanaries() { current[name] = fmt.Sprintf("%s.%s", canary.Spec.TargetRef.Name, canary.Namespace) job, exists := c.jobs[name] - // schedule new job for exsiting job with different analysisInterval or non-existing job + // schedule new job for existing job with different analysis interval or non-existing job if (exists && job.GetCanaryAnalysisInterval() != canary.GetAnalysisInterval()) || !exists { if exists { job.Stop()