module Github::Repos::Commits

def update_comment(user, repo, comment_id)


@github.repos.update_comment(...)
@github = Github.new
= Examples

Update a commit comment
def update_comment(user, repo, comment_id)
  raise ArgumentError, "expected following inputs to the method: 'body'" unless _validate_inputs(["body"], inputs)
  patch("/repos/#{user}/#{repo}/comments/#{comment_id}")
end