diff options
author | Joseph Crail <jbcrail@gmail.com> | 2014-12-06 20:22:48 -0500 |
---|---|---|
committer | Joseph Crail <jbcrail@gmail.com> | 2014-12-06 20:22:48 -0500 |
commit | 39c068400e9dd3a577580faa41e87140c2d2e499 (patch) | |
tree | 96f3d13fa2f884b845c7b1507c1de07927da1617 /routers | |
parent | 47e7175b80d1f1bf05bd2da3a38c898596b12835 (diff) | |
download | gitea-39c068400e9dd3a577580faa41e87140c2d2e499.tar.gz gitea-39c068400e9dd3a577580faa41e87140c2d2e499.zip |
Fix spelling errors in comments.
Diffstat (limited to 'routers')
-rw-r--r-- | routers/repo/issue.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/repo/issue.go b/routers/repo/issue.go index 750f4e40c6..999fd0a892 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -628,7 +628,7 @@ func UpdateAssignee(ctx *middleware.Context) { } aid := com.StrTo(ctx.Query("assigneeid")).MustInt64() - // Not check for invalid assignne id and give responsibility to owners. + // Not check for invalid assignee id and give responsibility to owners. issue.AssigneeId = aid if err = models.UpdateIssueUserPairByAssignee(aid, issue.Id); err != nil { ctx.Handle(500, "UpdateIssueUserPairByAssignee: %v", err) |