mirror of https://github.com/gogs/gogs.git
chore: fix typo in docstring (#7269)
parent
a5ad63a005
commit
83335043e2
|
@ -834,7 +834,7 @@ func GetIssueByRef(ref string) (*Issue, error) {
|
||||||
return issue, issue.LoadAttributes()
|
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) {
|
func GetRawIssueByIndex(repoID, index int64) (*Issue, error) {
|
||||||
issue := &Issue{
|
issue := &Issue{
|
||||||
RepoID: repoID,
|
RepoID: repoID,
|
||||||
|
|
Loading…
Reference in New Issue