class Github::PullRequests::Comments
def get(user_name, repo_name, comment_id, params={})
github.pull_requests.comments.get 'user-name', 'repo-name', 'comment-id'
github = Github.new
= Examples
Get a single comment for pull requests
def get(user_name, repo_name, comment_id, params={}) set :user => user_name, :repo => repo_name assert_presence_of user, repo, comment_id normalize! params # _merge_mime_type(:pull_comment, params) get_request("/repos/#{user}/#{repo}/pulls/comments/#{comment_id}", params) end