module Github::Gists::Comments
def gist_comments(gist_id, params={})
@github.gists.gist_comments 'gist-id'
@github = Github.new
= Examples
List comments on a gist
def gist_comments(gist_id, params={}) _normalize_params_keys(params) _merge_mime_type(:gist_comment, params) get("/gists/#{gist_id}/comments", params) end