From 665ac6b0bbdf48ecc9fa787ec890ca4d9e677b4f Mon Sep 17 00:00:00 2001 From: lmxia Date: Fri, 9 Feb 2018 11:29:35 +0800 Subject: [PATCH] fix typo --- ghclient/wrappers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghclient/wrappers.go b/ghclient/wrappers.go index a932e0187b5e..ea080bd28ba8 100644 --- a/ghclient/wrappers.go +++ b/ghclient/wrappers.go @@ -106,7 +106,7 @@ type PRMungeFunc func(*github.PullRequest) error func (c *Client) ForEachPR(owner, repo string, opts *github.PullRequestListOptions, continueOnError bool, mungePR PRMungeFunc) error { var lastPage int // Munge each page as we get it (or in other words, wait until we are ready to munge the next - // page of issues before geting it). We use depaginate to make the calls, but don't care about + // page of issues before getting it). We use depaginate to make the calls, but don't care about // the slice it returns since we consume the pages as we go. _, err := c.depaginate( "processing PRs",