From 917027b42e4401bbf20b4e16b18121e214937e00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=94=E4=BB=A4=E9=A3=9E?= Date: Tue, 28 Nov 2023 11:44:35 +0800 Subject: [PATCH] fix incorrect function comment Change-Id: I7d5e908f979026faa467fdd77049b6aa3087fd7c --- pkg/scheduler/internal/queue/scheduling_queue.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/scheduler/internal/queue/scheduling_queue.go b/pkg/scheduler/internal/queue/scheduling_queue.go index c50d853ba6c..19432b6ab1f 100644 --- a/pkg/scheduler/internal/queue/scheduling_queue.go +++ b/pkg/scheduler/internal/queue/scheduling_queue.go @@ -294,7 +294,7 @@ type QueueingHintMapPerProfile map[string]QueueingHintMap // QueueingHintMap is keyed with ClusterEvent, valued with queueing hint functions registered for the event. type QueueingHintMap map[framework.ClusterEvent][]*QueueingHintFunction -// WithQueueingHintMapPerProfile sets preEnqueuePluginMap for PriorityQueue. +// WithQueueingHintMapPerProfile sets queueingHintMap for PriorityQueue. func WithQueueingHintMapPerProfile(m QueueingHintMapPerProfile) Option { return func(o *priorityQueueOptions) { o.queueingHintMap = m