From a61a775b6280de83f619373543b0446ef18a709b Mon Sep 17 00:00:00 2001 From: Michael Schurter Date: Thu, 9 Apr 2020 15:19:11 -0700 Subject: [PATCH] core: fix comment on system stack This makes me do a double take every time I run into it, so what if we just changed it? --- scheduler/stack.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scheduler/stack.go b/scheduler/stack.go index 73d66ba13f4..6fd6df12200 100644 --- a/scheduler/stack.go +++ b/scheduler/stack.go @@ -185,7 +185,7 @@ type SystemStack struct { scoreNorm *ScoreNormalizationIterator } -// NewSystemStack constructs a stack used for selecting service placements +// NewSystemStack constructs a stack used for selecting system job placements. func NewSystemStack(ctx Context) *SystemStack { // Create a new stack s := &SystemStack{ctx: ctx}