diff options
author | Ethan Koenig <etk39@cornell.edu> | 2017-01-04 19:50:34 -0500 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-01-05 08:50:34 +0800 |
commit | 1207bda94b8de9f0cc618c4ccce235d809a5559e (patch) | |
tree | 9650961a7aa1dd3de883f5f6bef27db420b26227 /models/user_mail.go | |
parent | dc3ff9f2abc935f06940de56d613dacde3ee8c13 (diff) | |
download | gitea-1207bda94b8de9f0cc618c4ccce235d809a5559e.tar.gz gitea-1207bda94b8de9f0cc618c4ccce235d809a5559e.zip |
Fix typos in models/ (#576)
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, |