From cd63fd4543b99a45d0920421d0bd23af6f762dc8 Mon Sep 17 00:00:00 2001 From: ZxYuan Date: Sun, 14 Feb 2021 00:18:41 +0800 Subject: [PATCH] Fix typo in client-go/rest/client.go --- staging/src/k8s.io/client-go/rest/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/staging/src/k8s.io/client-go/rest/client.go b/staging/src/k8s.io/client-go/rest/client.go index f35955d45fa..c969300494c 100644 --- a/staging/src/k8s.io/client-go/rest/client.go +++ b/staging/src/k8s.io/client-go/rest/client.go @@ -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