From 0cb4fa15e31b969784c7133f6b3a6dc65508cdbd Mon Sep 17 00:00:00 2001 From: Mike Fridman Date: Wed, 13 Sep 2023 09:39:21 -0400 Subject: [PATCH] docs: fix comment in KeyFunc --- token.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/token.go b/token.go index c8c9d4d..352873a 100644 --- a/token.go +++ b/token.go @@ -11,7 +11,7 @@ import ( // Token. This allows you to use properties in the Header of the token (such as // `kid`) to identify which key to use. // -// The returned interface{} may be a single key or a PublicKeyset containing +// The returned interface{} may be a single key or a VerificationKeySet containing // multiple keys. type Keyfunc func(*Token) (interface{}, error)