Merge pull request #89249 from willise/typo

fix(apimachinery): trivial typo in comment of label
This commit is contained in:
Kubernetes Prow Robot
2020-03-25 06:19:03 -07:00
committed by GitHub

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