From c0df49043fe0d3a4c03743723ffd4f7b12b54ffe Mon Sep 17 00:00:00 2001 From: Kynan Ware <47394200+BagToad@users.noreply.github.com> Date: Sun, 11 Jan 2026 20:02:52 -0700 Subject: [PATCH] Clarify TODO comment for reviewer search function Updated the TODO comment to specify wiring up the reviewer search function if or when it exists, providing clearer intent for future development. --- pkg/cmd/pr/edit/edit.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/pr/edit/edit.go b/pkg/cmd/pr/edit/edit.go index 6710224e3..0ced8b58c 100644 --- a/pkg/cmd/pr/edit/edit.go +++ b/pkg/cmd/pr/edit/edit.go @@ -294,7 +294,7 @@ func editRun(opts *EditOptions) error { apiClient := api.NewClientFromHTTP(httpClient) // Wire up search functions for assignees and reviewers. - // TODO: Wire up reviewer search func. + // TODO KW: Wire up reviewer search func if/when it exists. if issueFeatures.ActorIsAssignable { editable.AssigneeSearchFunc = assigneeSearchFunc(apiClient, repo, &editable, pr.ID) }