module Github::Repos::Commits
def list_commit_comments(user, repo, sha)
@github.repos.list_commit_comments('user-name', 'repo-name', '6dcb09b5b57875f334f61aebed695e2e4193db5e')
@github = Github.new
= Examples
List comments for a single commit
def list_commit_comments(user, repo, sha) get("/repos/#{user}/#{repo}/commits/#{sha}/comments") end