From d524cbddc255cc454469d84d861da5a72f38500c Mon Sep 17 00:00:00 2001 From: Kynan Ware <47394200+BagToad@users.noreply.github.com> Date: Mon, 10 Mar 2025 14:55:39 -0600 Subject: [PATCH] docs(pr create): clarify comment on head branch syntax --- pkg/cmd/pr/create/create.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/pr/create/create.go b/pkg/cmd/pr/create/create.go index 04cf5d1aa..fa6373b41 100644 --- a/pkg/cmd/pr/create/create.go +++ b/pkg/cmd/pr/create/create.go @@ -599,7 +599,7 @@ func NewCreateContext(opts *CreateOptions) (*CreateContext, error) { promptForHeadRepo = false targetHeadBranch = opts.HeadBranch // If the --head provided contains a colon, that means - // this is : syntax. + // this is : syntax. if idx := strings.IndexRune(opts.HeadBranch, ':'); idx >= 0 { targetHeadRepoOwner = opts.HeadBranch[:idx] targetHeadBranch = opts.HeadBranch[idx+1:]