We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2660b03 commit 820031eCopy full SHA for 820031e
services/auth/source/oauth2/jwtsigningkey.go
@@ -31,11 +31,11 @@ import (
31
32
// ErrInvalidAlgorithmType represents an invalid algorithm error.
33
type ErrInvalidAlgorithmType struct {
34
- Algorightm string
+ Algorithm string
35
}
36
37
func (err ErrInvalidAlgorithmType) Error() string {
38
- return fmt.Sprintf("JWT signing algorithm is not supported: %s", err.Algorightm)
+ return fmt.Sprintf("JWT signing algorithm is not supported: %s", err.Algorithm)
39
40
41
// JWTSigningKey represents a algorithm/key pair to sign JWTs
0 commit comments