From 6879d2cf1f421796d7ccccde1b7f9c20510fd604 Mon Sep 17 00:00:00 2001 From: Eduardo Haesbaert <7138209+duhaesbaert@users.noreply.github.com> Date: Tue, 22 Aug 2023 15:26:47 -0300 Subject: [PATCH] Update ParseUnverified godoc (#341) --- parser.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/parser.go b/parser.go index 550d2db..8fc4919 100644 --- a/parser.go +++ b/parser.go @@ -117,8 +117,8 @@ func (p *Parser) ParseWithClaims(tokenString string, claims Claims, keyFunc Keyf // // WARNING: Don't use this method unless you know what you're doing. // -// It's only ever useful in cases where you know the signature is valid (because it has -// been checked previously in the stack) and you want to extract values from it. +// It's only ever useful in cases where you know the signature is valid (since it has already +// been or will be checked elsewhere in the stack) and you want to extract values from it. func (p *Parser) ParseUnverified(tokenString string, claims Claims) (token *Token, parts []string, err error) { parts = strings.Split(tokenString, ".") if len(parts) != 3 {