Bump deps

This commit is contained in:
Jeff Mitchell
2017-02-08 02:13:15 -05:00
parent ed215640f4
commit 25bcca2fad
141 changed files with 6008 additions and 17121 deletions

View File

@@ -95,7 +95,7 @@ func (s *IssuesService) GetComment(owner string, repo string, id int) (*IssueCom
return nil, resp, err
}
return comment, resp, err
return comment, resp, nil
}
// CreateComment creates a new comment on the specified issue.
@@ -113,7 +113,7 @@ func (s *IssuesService) CreateComment(owner string, repo string, number int, com
return nil, resp, err
}
return c, resp, err
return c, resp, nil
}
// EditComment updates an issue comment.
@@ -131,7 +131,7 @@ func (s *IssuesService) EditComment(owner string, repo string, id int, comment *
return nil, resp, err
}
return c, resp, err
return c, resp, nil
}
// DeleteComment deletes an issue comment.