Skip to content

Commit 6879d2c

Browse files
authored
Update ParseUnverified godoc (#341)
1 parent 78e25d6 commit 6879d2c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

parser.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@ func (p *Parser) ParseWithClaims(tokenString string, claims Claims, keyFunc Keyf
117117
//
118118
// WARNING: Don't use this method unless you know what you're doing.
119119
//
120-
// It's only ever useful in cases where you know the signature is valid (because it has
121-
// been checked previously in the stack) and you want to extract values from it.
120+
// It's only ever useful in cases where you know the signature is valid (since it has already
121+
// been or will be checked elsewhere in the stack) and you want to extract values from it.
122122
func (p *Parser) ParseUnverified(tokenString string, claims Claims) (token *Token, parts []string, err error) {
123123
parts = strings.Split(tokenString, ".")
124124
if len(parts) != 3 {

0 commit comments

Comments
 (0)