1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

fix some typos (#1082)

This commit is contained in:
Lunny Xiao
2017-02-28 12:56:15 +08:00
committed by GitHub
parent 4b286f282a
commit c2eef171ff
4 changed files with 6 additions and 6 deletions

View File

@@ -296,7 +296,7 @@ func Home(ctx *context.Context) {
ctx.HTML(200, tplRepoHome)
}
// RenderUserCards render a page show users accroding the input templaet
// RenderUserCards render a page show users according the input templaet
func RenderUserCards(ctx *context.Context, total int, getter func(page int) ([]*models.User, error), tpl base.TplName) {
page := ctx.QueryInt("page")
if page <= 0 {