From 28d5de9d8ebff954de47a36be5d5c92b92d9d18c Mon Sep 17 00:00:00 2001 From: jinjingroad Date: Thu, 19 Jun 2025 12:36:52 +0800 Subject: [PATCH] chore: fix function name Signed-off-by: jinjingroad --- pkg/cmd/pr/shared/find_refs_resolution.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/pr/shared/find_refs_resolution.go b/pkg/cmd/pr/shared/find_refs_resolution.go index e4e51bab8..4b977c716 100644 --- a/pkg/cmd/pr/shared/find_refs_resolution.go +++ b/pkg/cmd/pr/shared/find_refs_resolution.go @@ -129,7 +129,7 @@ func NewPullRequestFindRefsResolver(gitConfigClient GitConfigClient, remotesFn f } } -// ResolvePullRequests takes a base repository, a base branch name and a local branch name and uses the git configuration to +// ResolvePullRequestRefs takes a base repository, a base branch name and a local branch name and uses the git configuration to // determine the head repository and remote branch name. If we were unable to determine this from git, we default the head // repository to the base repository. func (r *PullRequestFindRefsResolver) ResolvePullRequestRefs(baseRepo ghrepo.Interface, baseBranchName, localBranchName string) (PRFindRefs, error) {