class Github::Gists::Comments

def get(comment_id, params={})


github.gists.comments.get 'comment-id'
github = Github.new
= Examples

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