updated reference comment

This commit is contained in:
Pushpamk 2020-10-08 16:04:28 +05:30
parent 40a0b0d511
commit f8a49ca624
2 changed files with 3 additions and 3 deletions

View file

@ -23,7 +23,7 @@ type IssuesAndTotalCount struct {
TotalCount int
}
// Ref. https://docs.github.com/v4/object/issue
// Ref. Please see Github GraphQL object issue reference page
type Issue struct {
ID string
Number int

View file

@ -191,7 +191,7 @@ func printHumanPrPreview(io *iostreams.IOStreams, pr *api.PullRequest) error {
return nil
}
// Ref. https://docs.github.com/v4/enum/pullrequestreviewstate/
// Ref. Please see Github GraphQL PullRequestReviewState reference page
const (
requestedReviewState = "REQUESTED" // This is our own state for review request
approvedReviewState = "APPROVED"
@ -250,7 +250,7 @@ func prReviewerList(pr api.PullRequest) string {
return reviewerList
}
// Ref. https://docs.github.com/v4/enum/pullrequestreviewstate/
// Ref. Please see Github GraphQL PullRequestReviewState reference page
const teamTypeName = "Team"
const ghostName = "ghost"