module Github::Gists::Comments
def delete_gist_comment(comment_id, params={})
@github.gists.delete_gist_comment 'comment-id'
@github = Github.new
= Examples
Delete a comment
def delete_gist_comment(comment_id, params={}) _normalize_params_keys(params) delete("/gists/comments/#{comment_id}", params) end