diff options
Diffstat (limited to 'models/user_mail.go')
-rw-r--r-- | models/user_mail.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/models/user_mail.go b/models/user_mail.go index ce29354771..4ccf08e9d9 100644 --- a/models/user_mail.go +++ b/models/user_mail.go @@ -49,8 +49,8 @@ func GetEmailAddresses(uid int64) ([]*EmailAddress, error) { } } - // We alway want the primary email address displayed, even if it's not in - // the emailaddress table (yet). + // We always want the primary email address displayed, even if it's not in + // the email address table (yet). if !isPrimaryFound { emails = append(emails, &EmailAddress{ Email: u.Email, |