1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-22 03:05:48 +00:00

typo fix for comment

This commit is contained in:
Dustin Willis Webber 2015-04-16 14:40:39 -04:00
parent f78046fc3b
commit e57594dc31

View File

@ -145,7 +145,7 @@ func (u *User) EncodePasswd() {
u.Passwd = fmt.Sprintf("%x", newPasswd)
}
// ValidtePassword checks if given password matches the one belongs to the user.
// ValidatePassword checks if given password matches the one belongs to the user.
func (u *User) ValidatePassword(passwd string) bool {
newUser := &User{Passwd: passwd, Salt: u.Salt}
newUser.EncodePasswd()