mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-04 05:18:25 +00:00 
			
		
		
		
	Fix typo in source (#20723)
Algorightm -> Algorithm Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
This commit is contained in:
		@@ -31,11 +31,11 @@ import (
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// ErrInvalidAlgorithmType represents an invalid algorithm error.
 | 
					// ErrInvalidAlgorithmType represents an invalid algorithm error.
 | 
				
			||||||
type ErrInvalidAlgorithmType struct {
 | 
					type ErrInvalidAlgorithmType struct {
 | 
				
			||||||
	Algorightm string
 | 
						Algorithm string
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func (err ErrInvalidAlgorithmType) Error() string {
 | 
					func (err ErrInvalidAlgorithmType) Error() string {
 | 
				
			||||||
	return fmt.Sprintf("JWT signing algorithm is not supported: %s", err.Algorightm)
 | 
						return fmt.Sprintf("JWT signing algorithm is not supported: %s", err.Algorithm)
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// JWTSigningKey represents a algorithm/key pair to sign JWTs
 | 
					// JWTSigningKey represents a algorithm/key pair to sign JWTs
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user