module Github::Gists::Comments

def delete_comment(comment_id, params={})


@github.gists.delete_comment 'comment-id'
@github = Github.new
= Examples

Delete a comment
def delete_comment(comment_id, params={})
  _normalize_params_keys(params)
  _validate_presence_of(comment_id)
  # _merge_mime_type(:gist_comment, params)
  delete("/gists/comments/#{comment_id}", params)
end