diff --git a/api/queries_issue.go b/api/queries_issue.go index 6ef431ed4..d607901a3 100644 --- a/api/queries_issue.go +++ b/api/queries_issue.go @@ -23,7 +23,6 @@ type IssuesAndTotalCount struct { TotalCount int } -// Ref. https://developer.github.com/v4/object/issue/ type Issue struct { ID string Number int diff --git a/pkg/cmd/pr/view/view.go b/pkg/cmd/pr/view/view.go index 33a75b34d..4476a84c0 100644 --- a/pkg/cmd/pr/view/view.go +++ b/pkg/cmd/pr/view/view.go @@ -191,7 +191,6 @@ func printHumanPrPreview(io *iostreams.IOStreams, pr *api.PullRequest) error { return nil } -// Ref. https://developer.github.com/v4/enum/pullrequestreviewstate/ const ( requestedReviewState = "REQUESTED" // This is our own state for review request approvedReviewState = "APPROVED" @@ -250,7 +249,6 @@ func prReviewerList(pr api.PullRequest) string { return reviewerList } -// Ref. https://developer.github.com/v4/union/requestedreviewer/ const teamTypeName = "Team" const ghostName = "ghost"