Skip to content

Commit a93f71f

Browse files
authored
Merge pull request coreos#157 from srenatus/patch-1
[nit] fix error message typo
2 parents a4973d9 + a5b30fd commit a93f71f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

verify.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ func contains(sli []string, ele string) bool {
120120
func (v *IDTokenVerifier) Verify(ctx context.Context, rawIDToken string) (*IDToken, error) {
121121
jws, err := jose.ParseSigned(rawIDToken)
122122
if err != nil {
123-
return nil, fmt.Errorf("oidc: mallformed jwt: %v", err)
123+
return nil, fmt.Errorf("oidc: malformed jwt: %v", err)
124124
}
125125

126126
// Throw out tokens with invalid claims before trying to verify the token. This lets

0 commit comments

Comments
 (0)