class Github::Gists::Comments

def get(gist_id, comment_id, params={})


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

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