Remove outdated comment in SuggestedAssignableActors

Deleted a comment about the query variable being passed as null when empty, as it is no longer relevant or necessary.
This commit is contained in:
Kynan Ware 2026-01-26 15:09:58 -07:00
parent a33d809c88
commit 23e80a9d24

View file

@ -703,7 +703,6 @@ func RemovePullRequestReviews(client *Client, repo ghrepo.Interface, prNumber in
// SuggestedAssignableActors fetches up to 10 suggested actors for a specific assignable
// (Issue or PullRequest) node ID. `assignableID` is the GraphQL node ID for the Issue/PR.
// If query is empty, the query variable is passed as null to omit filtering.
// Returns the actors, the total count of available assignees in the repo, and an error.
func SuggestedAssignableActors(client *Client, repo ghrepo.Interface, assignableID string, query string) ([]AssignableActor, int, error) {
type responseData struct {