Merge pull request #99063 from ZxYuan/patch-1

Fix typo in client-go/rest/client.go
This commit is contained in:
Kubernetes Prow Robot
2021-02-17 11:58:23 -08:00
committed by GitHub

View File

@@ -127,7 +127,7 @@ func NewRESTClient(baseURL *url.URL, versionedAPIPath string, config ClientConte
}, nil
}
// GetRateLimiter returns rate limier for a given client, or nil if it's called on a nil client
// GetRateLimiter returns rate limiter for a given client, or nil if it's called on a nil client
func (c *RESTClient) GetRateLimiter() flowcontrol.RateLimiter {
if c == nil {
return nil