Fix typos like limitting

Kubernetes-commit: 3c055aa4b47232bf7d6b5d5a0901dae239e33c59
This commit is contained in:
danielqsj 2018-12-04 11:01:40 +08:00 committed by Kubernetes Publisher
parent 23e9999aee
commit d25d9a3c52
3 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ type RateLimiter interface {
}
// DefaultControllerRateLimiter is a no-arg constructor for a default rate limiter for a workqueue. It has
// both overall and per-item rate limitting. The overall is a token bucket and the per-item is exponential
// both overall and per-item rate limiting. The overall is a token bucket and the per-item is exponential
func DefaultControllerRateLimiter() RateLimiter {
return NewMaxOfRateLimiter(
NewItemExponentialFailureRateLimiter(5*time.Millisecond, 1000*time.Second),