class Github::Repos::Comments
def update(*args)
'comment-id', "body" => "Nice change"
github.repos.comments.update 'user-name', 'repo-name',
github = Github.new
= Examples
* :body - Required string.
= Inputs
Update a commit comment
def update(*args) arguments(args, :required => [:user, :repo, :comment_id]) do assert_required REQUIRED_COMMENT_OPTIONS end params = arguments.params patch_request("/repos/#{user}/#{repo}/comments/#{comment_id}", params) end