class Github::PullRequests::Comments

def get(*args)


github.pull_requests.comments.get 'user-name', 'repo-name', 'comment-id'
github = Github.new
= Examples
Get a single comment for pull requests
def get(*args)
  arguments(args, :required => [:user, :repo, :comment_id])
  get_request("/repos/#{user}/#{repo}/pulls/comments/#{comment_id}", arguments.params)
end