From 80f96e9abbd328faa165cf5b18362e913546f47f Mon Sep 17 00:00:00 2001 From: Will Palmeri Date: Thu, 1 Nov 2018 10:07:15 -0700 Subject: [PATCH] fix typo --- pkg/proxy/apis/config/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/proxy/apis/config/types.go b/pkg/proxy/apis/config/types.go index e309317b0a2..dacee32bb3a 100644 --- a/pkg/proxy/apis/config/types.go +++ b/pkg/proxy/apis/config/types.go @@ -172,7 +172,7 @@ type IPVSSchedulerMethod string const ( // RoundRobin distributes jobs equally amongst the available real servers. RoundRobin IPVSSchedulerMethod = "rr" - // WeightedRoundRobin assigns jobs to real servers proportionally to there real servers' weight. + // WeightedRoundRobin assigns jobs to real servers proportionally to their real servers' weight. // Servers with higher weights receive new jobs first and get more jobs than servers with lower weights. // Servers with equal weights get an equal distribution of new jobs. WeightedRoundRobin IPVSSchedulerMethod = "wrr"