From 3ad158d62c8f2896707b5df859cd9fc7b3252084 Mon Sep 17 00:00:00 2001 From: zzchun Date: Fri, 10 Sep 2021 10:14:21 +0800 Subject: [PATCH] fix typo in framework interface Signed-off-by: zzchun --- pkg/scheduler/framework/interface.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/scheduler/framework/interface.go b/pkg/scheduler/framework/interface.go index 5e7e6ee13e0..0ea75576314 100644 --- a/pkg/scheduler/framework/interface.go +++ b/pkg/scheduler/framework/interface.go @@ -131,7 +131,7 @@ func NewPodsToActivate() *PodsToActivate { } // Status indicates the result of running a plugin. It consists of a code, a -// message, (optionally) an error and an plugin name it fails by. +// message, (optionally) an error, and a plugin name it fails by. // When the status code is not Success, the reasons should explain why. // And, when code is Success, all the other fields should be empty. // NOTE: A nil Status is also considered as Success.