module Github::Repos::Commits
def get_comment(user, repo, comment_id)
@github.repos.get_comment 'user-name', 'repo-name', 'comment-id'
@github = Github.new
= Examples
Gets a single commit comment
def get_comment(user, repo, comment_id) get("/repos/#{user}/#{repo}/comments/#{comment_id}") end