diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2017-02-28 12:56:15 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-28 12:56:15 +0800 |
commit | c2eef171ff98d0ead2477296b7ae4e05b602da88 (patch) | |
tree | b65b46858b3763dfefc4771e69b84d40b772fec2 /routers/repo/view.go | |
parent | 4b286f282a38d55b2271c43db80d3ac938746c79 (diff) | |
download | gitea-c2eef171ff98d0ead2477296b7ae4e05b602da88.tar.gz gitea-c2eef171ff98d0ead2477296b7ae4e05b602da88.zip |
fix some typos (#1082)
Diffstat (limited to 'routers/repo/view.go')
-rw-r--r-- | routers/repo/view.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/repo/view.go b/routers/repo/view.go index 0f9def877f..5f9d78a52f 100644 --- a/routers/repo/view.go +++ b/routers/repo/view.go @@ -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 { |