From 6d1b527d46849e8fc9238298ebe86dced178609c Mon Sep 17 00:00:00 2001 From: Maryum Date: Thu, 1 Sep 2016 12:22:04 -0700 Subject: [PATCH] fix comment typo Closes #424 --- github/search.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/github/search.go b/github/search.go index 916a2dc..579a57d 100644 --- a/github/search.go +++ b/github/search.go @@ -70,7 +70,7 @@ func (s *SearchService) Issues(query string, opt *SearchOptions) (*IssuesSearchR return result, resp, err } -// UsersSearchResult represents the result of an issues search. +// UsersSearchResult represents the result of a users search. type UsersSearchResult struct { Total *int `json:"total_count,omitempty"` IncompleteResults *bool `json:"incomplete_results,omitempty"` @@ -105,7 +105,7 @@ func (tm TextMatch) String() string { return Stringify(tm) } -// CodeSearchResult represents the result of an code search. +// CodeSearchResult represents the result of a code search. type CodeSearchResult struct { Total *int `json:"total_count,omitempty"` IncompleteResults *bool `json:"incomplete_results,omitempty"`