fixed typo

Signed-off-by: Konrad <konrad@kola-entertainments.de>
This commit is contained in:
Konrad Langenberg 2017-09-23 15:24:43 +02:00 committed by Konrad
parent d9aea3d646
commit 8debb0a272

View File

@ -521,9 +521,9 @@ func createDeleteBranchComment(e *xorm.Session, doer *User, repo *Repository, is
}
// Creates issue dependency comment
func createIssueDependencyComment(e *xorm.Session, doer *User, issue *Issue, dependentIssue *Issue, added bool) (*Comment, error) {
func createIssueDependencyComment(e *xorm.Session, doer *User, issue *Issue, dependentIssue *Issue, add bool) (*Comment, error) {
cType := CommentTypeAddDependency
if !added {
if !add {
cType = CommentTypeRemoveDependency
}