class Github::Gists::Comments

def edit(*args)


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

Edit a comment
def edit(*args)
  arguments(args, :required => [:gist_id, :comment_id]) do
    sift VALID_GIST_COMMENT_OPTIONS
    assert_required REQUIRED_GIST_COMMENT_OPTIONS
  end
  patch_request("/gists/#{gist_id}/comments/#{comment_id}", arguments.params)
end