module Github::Gists::Comments

def comment(comment_id, params={})


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

Get a single comment
def comment(comment_id, params={})
  _normalize_params_keys(params)
  _validate_presence_of(comment_id)
  # _merge_mime_type(:gist_comment, params)
  get("/gists/comments/#{comment_id}", params)
end