From 67d3b5fb8232a62c41945dcb312404bba1cc9abd Mon Sep 17 00:00:00 2001 From: Joshua Casey Date: Tue, 7 May 2024 14:10:34 -0500 Subject: [PATCH] Fix misspell lint issues --- internal/registry/clientsecretrequest/rest.go | 2 +- internal/registry/credentialrequest/rest.go | 2 +- internal/registry/whoamirequest/rest.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/registry/clientsecretrequest/rest.go b/internal/registry/clientsecretrequest/rest.go index 2382aaec3..ffa66c973 100644 --- a/internal/registry/clientsecretrequest/rest.go +++ b/internal/registry/clientsecretrequest/rest.go @@ -72,7 +72,7 @@ type REST struct { // Assert that our *REST implements all the optional interfaces that we expect it to implement. var _ interface { - rest.Creater + rest.Creater //nolint:misspell // this name comes from a dependency rest.NamespaceScopedStrategy rest.Scoper rest.Storage diff --git a/internal/registry/credentialrequest/rest.go b/internal/registry/credentialrequest/rest.go index 29153db6f..477cdde68 100644 --- a/internal/registry/credentialrequest/rest.go +++ b/internal/registry/credentialrequest/rest.go @@ -47,7 +47,7 @@ type REST struct { // Assert that our *REST implements all the optional interfaces that we expect it to implement. var _ interface { - rest.Creater + rest.Creater //nolint:misspell // this name comes from a dependency rest.NamespaceScopedStrategy rest.Scoper rest.Storage diff --git a/internal/registry/whoamirequest/rest.go b/internal/registry/whoamirequest/rest.go index edf15b2f7..c7bb1684c 100644 --- a/internal/registry/whoamirequest/rest.go +++ b/internal/registry/whoamirequest/rest.go @@ -33,7 +33,7 @@ type REST struct { // Assert that our *REST implements all the optional interfaces that we expect it to implement. var _ interface { - rest.Creater + rest.Creater //nolint:misspell // this name comes from a dependency rest.NamespaceScopedStrategy rest.Scoper rest.Storage