From f41b8fb9f1618ff38abe225442f92ce66bd77d77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Niclas=20Oelschl=C3=A4ger?= Date: Wed, 21 Feb 2024 21:13:49 +0100 Subject: [PATCH] chore: corrected 'retrieve' --- 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 7e43f2230a..a87970587a 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 retrive info from joined tables +// this type is used in func `BlockingDependenciesMap` and `BlockedByDependenciesMap` as xorm intermediet 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