module Github::PullRequests::Comments
def comment(user_name, repo_name, comment_id, params={})
@github.pull_requests.comment 'user-name', 'repo-name', 'comment-id'
@github = Github.new
= Examples
Get a single comment for pull requests
def comment(user_name, repo_name, comment_id, params={}) _update_user_repo_params(user_name, repo_name) _validate_user_repo_params(user, repo) unless user? && repo? _validate_presence_of comment_id _normalize_params_keys(params) # _merge_mime_type(:pull_comment, params) get("/repos/#{user}/#{repo}/pulls/comments/#{comment_id}", params) end