diff options
Diffstat (limited to 'services/issue')
-rw-r--r-- | services/issue/assignee.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/issue/assignee.go b/services/issue/assignee.go index f24a242f6b..12addede75 100644 --- a/services/issue/assignee.go +++ b/services/issue/assignee.go @@ -25,7 +25,7 @@ func DeleteNotPassedAssignee(issue *models.Issue, doer *models.User, assignees [ } if !found { - // This function also does comments and hooks, which is why we call it seperatly instead of directly removing the assignees here + // This function also does comments and hooks, which is why we call it separately instead of directly removing the assignees here if _, _, err := ToggleAssignee(issue, doer, assignee.ID); err != nil { return err } |