class Github::Client::Repos::Comments

def update(*args)

Other tags:
    Api: - public

Options Hash: (**params)
  • :body (String) --

Parameters:
  • params (Hash) --
def update(*args)
  arguments(args, required: [:user, :repo, :id]) do
    assert_required REQUIRED_COMMENT_OPTIONS
  end
  patch_request("/repos/#{arguments.user}/#{arguments.repo}/comments/#{arguments.id}", arguments.params)
end