module Github::Repos::Commits

def delete_comment(user, repo, comment_id)


@github.repos.delete_comment(...)
@github = Github.new
= Examples

Deletes a commit comment
def delete_comment(user, repo, comment_id)
  delete("/repos/#{user}/#{repo}/comments/#{comment_id}")
end