diff options
author | Bwko <bouwko@gmail.com> | 2016-11-27 12:59:12 +0100 |
---|---|---|
committer | Bwko <bouwko@gmail.com> | 2016-11-27 12:59:12 +0100 |
commit | a4ece1f22391a3602631ada5cb89797e134c4e13 (patch) | |
tree | 890425f7efaee401187306da035395effee6bf76 /models/org.go | |
parent | 5efdccd1d8d8edb801e94aacee311929cae1af8e (diff) | |
download | gitea-a4ece1f22391a3602631ada5cb89797e134c4e13.tar.gz gitea-a4ece1f22391a3602631ada5cb89797e134c4e13.zip |
Fixes typos
Diffstat (limited to 'models/org.go')
-rw-r--r-- | models/org.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/org.go b/models/org.go index 1d2ff1300f..3b04ed578c 100644 --- a/models/org.go +++ b/models/org.go @@ -500,7 +500,7 @@ func (org *User) getUserTeams(e Engine, userID int64, cols ...string) ([]*Team, Find(&teams) } -// GetUserTeamIDs returns of all team IDs of the organization that user is memeber of. +// GetUserTeamIDs returns of all team IDs of the organization that user is member of. func (org *User) GetUserTeamIDs(userID int64) ([]int64, error) { teams, err := org.getUserTeams(x, userID, "team.id") if err != nil { |