module Github::Issues::Comments
def issue_comments(user_name, repo_name, issue_id, params={})
@github.issues.issue_comments 'user-name', 'repo-name', 'issue-id'
@github = Github.new
= Examples
List comments on an issue
def issue_comments(user_name, repo_name, issue_id, params={}) _update_user_repo_params(user_name, repo_name) _validate_user_repo_params(user, repo) unless user? && repo? _validate_presence_of issue_id _normalize_params_keys(params) get("/repos/#{user}/#{repo}/issues/#{issue_id}/comments", params) end