fix(apimachinery): trivial typo in comment of label

This commit is contained in:
willise 2020-03-19 16:37:43 +08:00
parent 21d4d13d98
commit 4303e797a6

View File

@ -221,7 +221,7 @@ func (r *Requirement) Matches(ls Labels) bool {
return false
}
// There should be only one strValue in r.strValues, and can be converted to a integer.
// There should be only one strValue in r.strValues, and can be converted to an integer.
if len(r.strValues) != 1 {
klog.V(10).Infof("Invalid values count %+v of requirement %#v, for 'Gt', 'Lt' operators, exactly one value is required", len(r.strValues), r)
return false