From 0c087df4305a640401a4d1d2f3386d6a86c3643c Mon Sep 17 00:00:00 2001 From: Brad Rydzewski Date: Fri, 1 Oct 2021 14:04:15 -0400 Subject: [PATCH] update admission code comments [ci skip] --- plugin/admission/account.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/admission/account.go b/plugin/admission/account.go index 4ab10ccf..04615234 100644 --- a/plugin/admission/account.go +++ b/plugin/admission/account.go @@ -61,7 +61,7 @@ func (s *membership) Admit(ctx context.Context, user *core.User) error { return err } // if the user is a member of an organization in the - // organization whitelist we can admit the user. + // account whitelist we can admit the user. for _, org := range orgs { _, ok := s.account[strings.ToLower(org.Name)] if ok {