Skip to content
Snippets Groups Projects
Commit a9f71e37 authored by Alexander Matyushentsev's avatar Alexander Matyushentsev
Browse files

Update getPagination method comment

parent e10b8232
No related branches found
No related tags found
No related merge requests found
...@@ -503,10 +503,10 @@ func get(ctx context.Context, client *http.Client, apiURL string, v interface{}) ...@@ -503,10 +503,10 @@ func get(ctx context.Context, client *http.Client, apiURL string, v interface{})
return getPagination(apiURL, resp), nil return getPagination(apiURL, resp), nil
} }
// getPagination checks the "Link" header field for "next" or "last" pagination // getPagination checks the "Link" header field for "next" or "last" pagination URLs,
// URLs, and returns true only if a "next" URL is found. The next pages' URL is // and returns "next" page URL or empty string to indicate that there are no more pages.
// returned if a "next" URL is found. apiURL is returned if apiURL equals the // Non empty next pages' URL is returned if both "last" and "next" URLs are found and next page
// "last" URL or no "next" or "last" URL are found. // URL is not equal to last.
// //
// https://developer.github.com/v3/#pagination // https://developer.github.com/v3/#pagination
func getPagination(apiURL string, resp *http.Response) string { func getPagination(apiURL string, resp *http.Response) string {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment