module Github::PullRequests::Comments

def comments(user_name, repo_name, request_id, params={})


@github.pull_requests.comments 'user-name', 'repo-name', 'request-id'
@github = Github.new
= Examples

List comments on a pull request
def comments(user_name, repo_name, request_id, params={})
  _update_user_repo_params(user_name, repo_name)
  _validate_user_repo_params(user, repo) unless user? && repo?
  _validate_presence_of request_id
  _normalize_params_keys(params)
  _merge_mime_type(:pull_comment, params)
  response = get("/repos/#{user}/#{repo}/pulls/#{request_id}/comments", params)
  return response unless block_given?
  response.each { |el| yield el }
end