fix naming

This commit is contained in:
Unknwon 2015-08-05 11:18:24 +08:00
parent 9311a9858a
commit ce4dcf1e83
2 changed files with 9 additions and 9 deletions

View file

@ -704,8 +704,8 @@ func GetMilestoneByIndex(repoId, idx int64) (*Milestone, error) {
return m, nil
}
// Milestones returns a list of milestones of given repository and status.
func Milestones(repoID int64, page int, isClosed bool) ([]*Milestone, error) {
// GetMilestones returns a list of milestones of given repository and status.
func GetMilestones(repoID int64, page int, isClosed bool) ([]*Milestone, error) {
miles := make([]*Milestone, 0, setting.IssuePagingNum)
sess := x.Where("repo_id=? AND is_closed=?", repoID, isClosed)
if page > 0 {