Merge pull request #52831 from caiyixiang/mis_spell

Automatic merge from submit-queue (batch tested with PRs 52831, 52764, 52763, 52673, 52558). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>..

correct a small spelling mistake
This commit is contained in:
Kubernetes Submit Queue 2017-09-23 22:57:47 -07:00 committed by GitHub
commit d4237ec4db

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()