pkg/controller/node/scheduler/rate_limited_queue.go:correct a small spelling mistake

This commit is contained in:
caiyixiang 2017-09-21 14:26:14 +08:00
parent 158f6b78da
commit e59263e519

View File

@ -257,7 +257,7 @@ func (q *RateLimitedTimedQueue) Try(fn ActionFunc) {
}
// Add value to the queue to be processed. Won't add the same
// value(comparsion by value) a second time if it was already added
// value(comparison by value) a second time if it was already added
// and not removed.
func (q *RateLimitedTimedQueue) Add(value string, uid interface{}) bool {
now := now()