From 26bfc6c46173b37554a039c5c14172828dae57fa Mon Sep 17 00:00:00 2001 From: Matt Feury Date: Thu, 8 Dec 2022 13:02:30 -0500 Subject: [PATCH] fix typo in compatibility --- pkg/auth/oidc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/auth/oidc.go b/pkg/auth/oidc.go index 352bf965..38346c76 100644 --- a/pkg/auth/oidc.go +++ b/pkg/auth/oidc.go @@ -104,7 +104,7 @@ func NewOidcAuthSetter(baseCfg BaseConfig, cfg OidcClientConfig) *OidcAuthProvid } // Previous versions hardcoded the scope to audience, - // so for backwards compatability, use that if no scope is set + // so for backwards compatibility, use that if no scope is set scope := cfg.OidcAudience if cfg.OidcScope != "" { scope = cfg.OidcScope