From 83335043e2a4912b9f83b2c6897aa64f2101892e Mon Sep 17 00:00:00 2001 From: xpume <770954908@qq.com> Date: Thu, 8 Dec 2022 21:58:01 +0800 Subject: [PATCH] chore: fix typo in docstring (#7269) --- internal/db/issue.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/db/issue.go b/internal/db/issue.go index dbb347215..c7e09ab97 100644 --- a/internal/db/issue.go +++ b/internal/db/issue.go @@ -834,7 +834,7 @@ func GetIssueByRef(ref string) (*Issue, error) { return issue, issue.LoadAttributes() } -// GetIssueByIndex returns raw issue without loading attributes by index in a repository. +// GetRawIssueByIndex returns raw issue without loading attributes by index in a repository. func GetRawIssueByIndex(repoID, index int64) (*Issue, error) { issue := &Issue{ RepoID: repoID,