From eebe11ae1bd2ec22e480539b4cd6c6538176f8d4 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Mon, 24 Feb 2020 16:16:35 -0500 Subject: [PATCH] spelling: coerce Signed-off-by: Josh Soref --- pkg/scheduler/scheduler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/scheduler/scheduler.go b/pkg/scheduler/scheduler.go index f25295247..7142a56ee 100644 --- a/pkg/scheduler/scheduler.go +++ b/pkg/scheduler/scheduler.go @@ -23,7 +23,7 @@ import ( // For mocking purposes. // This little bit of wrapping needs to be done because go doesn't do -// covariance, but it does coerse *time.Timer into stoppable implicitly if we +// covariance, but it does coerce *time.Timer into stoppable implicitly if we // write it out like so. var afterFunc = func(d time.Duration, f func()) stoppable { return time.AfterFunc(d, f)