diff --git a/vendor/github.com/Azure/go-autorest/autorest/retriablerequest_1.7.go b/vendor/github.com/Azure/go-autorest/autorest/retriablerequest_1.7.go index 7143cc61b58bf3760f642581d8526515d86b2a01..23403845262b22a5d96b3c2bdc89e3b021c029aa 100644 --- a/vendor/github.com/Azure/go-autorest/autorest/retriablerequest_1.7.go +++ b/vendor/github.com/Azure/go-autorest/autorest/retriablerequest_1.7.go @@ -31,7 +31,7 @@ type RetriableRequest struct { // Prepare signals that the request is about to be sent. func (rr *RetriableRequest) Prepare() (err error) { // preserve the request body; this is to support retry logic as - // the underlying transport will always close the reqeust body + // the underlying transport will always close the request body if rr.req.Body != nil { if rr.br != nil { _, err = rr.br.Seek(0, 0 /*io.SeekStart*/) diff --git a/vendor/github.com/Azure/go-autorest/autorest/retriablerequest_1.8.go b/vendor/github.com/Azure/go-autorest/autorest/retriablerequest_1.8.go index ae15c6bf962919b3981cc71e9b94b8eeeb3c018c..f5f9423ad6b12137d5deec7211c919b4cf6fdc84 100644 --- a/vendor/github.com/Azure/go-autorest/autorest/retriablerequest_1.8.go +++ b/vendor/github.com/Azure/go-autorest/autorest/retriablerequest_1.8.go @@ -33,7 +33,7 @@ type RetriableRequest struct { // Prepare signals that the request is about to be sent. func (rr *RetriableRequest) Prepare() (err error) { // preserve the request body; this is to support retry logic as - // the underlying transport will always close the reqeust body + // the underlying transport will always close the request body if rr.req.Body != nil { if rr.rc != nil { rr.req.Body = rr.rc diff --git a/vendor/k8s.io/client-go/tools/auth/clientauth.go b/vendor/k8s.io/client-go/tools/auth/clientauth.go index 4c24f79977f3ad6d52bd64c4753ced5a2f6980ff..797bbec3bf6a195c5845849f9492d258d4b66d46 100644 --- a/vendor/k8s.io/client-go/tools/auth/clientauth.go +++ b/vendor/k8s.io/client-go/tools/auth/clientauth.go @@ -32,7 +32,7 @@ Having a defined format allows: The file format is json, marshalled from a struct authcfg.Info. -Clinet libraries in other languages should use the same format. +Client libraries in other languages should use the same format. It is not intended to store general preferences, such as default namespace, output options, etc. CLIs (such as kubectl) and UIs should diff --git a/vendor/k8s.io/kubectl/pkg/util/i18n/translations/extract.py b/vendor/k8s.io/kubectl/pkg/util/i18n/translations/extract.py index f4c3398a2c4aeb1f689178d93797bd1402061fa4..6509e94c14d7a83bc1c76cbac2fded3448766fbc 100644 --- a/vendor/k8s.io/kubectl/pkg/util/i18n/translations/extract.py +++ b/vendor/k8s.io/kubectl/pkg/util/i18n/translations/extract.py @@ -44,7 +44,7 @@ SHORT_MATCH = MatchHandler(r'(\s+Short:\s+)("[^"]+"),', short_replace) def import_replace(match, file, line_number): """Add an extra import for the i18n library. Doesn't try to be smart and detect if it's already present, assumes a - gofmt round wil fix things. + gofmt round will fix things. """ sys.stdout.write('{}\n"k8s.io/kubectl/pkg/util/i18n"\n'.format(match.group(1)))