We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a4973d9 + a5b30fd commit a93f71fCopy full SHA for a93f71f
verify.go
@@ -120,7 +120,7 @@ func contains(sli []string, ele string) bool {
120
func (v *IDTokenVerifier) Verify(ctx context.Context, rawIDToken string) (*IDToken, error) {
121
jws, err := jose.ParseSigned(rawIDToken)
122
if err != nil {
123
- return nil, fmt.Errorf("oidc: mallformed jwt: %v", err)
+ return nil, fmt.Errorf("oidc: malformed jwt: %v", err)
124
}
125
126
// Throw out tokens with invalid claims before trying to verify the token. This lets
0 commit comments