From 2cddc0a23c382f8c35365cf4bc1c8b28ac5a353a Mon Sep 17 00:00:00 2001 From: "A.Unger" Date: Fri, 4 Dec 2020 13:53:34 +0100 Subject: [PATCH] fix leftover typo --- proxy/pkg/middleware/authentication.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/pkg/middleware/authentication.go b/proxy/pkg/middleware/authentication.go index ddbfd0b83..2600ab3c4 100644 --- a/proxy/pkg/middleware/authentication.go +++ b/proxy/pkg/middleware/authentication.go @@ -119,7 +119,7 @@ func newOIDCAuth(options Options) func(http.Handler) http.Handler { ) } -// newBasicAuth returns a configured oidc middleware +// newBasicAuth returns a configured basic middleware func newBasicAuth(options Options) func(http.Handler) http.Handler { return BasicAuth( Logger(options.Logger),