Merge pull request #100671 from Niekvdplas/spelling-mistakes

Fixed several spelling mistakes
This commit is contained in:
Kubernetes Prow Robot
2021-04-09 05:19:45 -07:00
committed by GitHub
26 changed files with 27 additions and 27 deletions

View File

@@ -409,7 +409,7 @@ func (pl *ServiceAffinity) ScoreExtensions() framework.ScoreExtensions {
// addUnsetLabelsToMap backfills missing values with values we find in a map.
func addUnsetLabelsToMap(aL map[string]string, labelsToAdd []string, labelSet labels.Set) {
for _, l := range labelsToAdd {
// if the label is already there, dont overwrite it.
// if the label is already there, don't overwrite it.
if _, exists := aL[l]; exists {
continue
}