From 899f5adf5e1a472665c6bf58a41943d5f03b8a76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Niclas=20Oelschl=C3=A4ger?= Date: Mon, 4 Mar 2024 23:05:45 +0100 Subject: [PATCH] chore: typo fix --- models/issues/issue.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/issues/issue.go b/models/issues/issue.go index a87970587ae..faaa85def77 100644 --- a/models/issues/issue.go +++ b/models/issues/issue.go @@ -594,7 +594,7 @@ func IsUserParticipantsOfIssue(ctx context.Context, user *user_model.User, issue } // DependencyInfo represents high level information about an issue which is a dependency of another issue. -// this type is used in func `BlockingDependenciesMap` and `BlockedByDependenciesMap` as xorm intermediet type to retrieve info from joined tables +// this type is used in func `BlockingDependenciesMap` and `BlockedByDependenciesMap` as xorm intermediate type to retrieve info from joined tables type DependencyInfo struct { Issue `xorm:"extends"` // an issue/pull that depend on issue_id or is blocked by issue_id. the exact usage is determined by the function using this type repo_model.Repository `xorm:"extends"` // the repo, that owns Issue