class Github::Gists::Comments

def edit(comment_id, params={})


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

Edit a comment
def edit(comment_id, params={})
  normalize! params
  assert_presence_of comment_id
  # _merge_mime_type(:gist_comment, params)
  filter! ALLOWED_GIST_COMMENT_INPUTS, params
  assert_required_keys(REQUIRED_GIST_COMMENT_INPUTS, params)
  patch_request("/gists/comments/#{comment_id}", params)
end