class Github::Repos::Comments
def update(user_name, repo_name, comment_id, params={})
'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(user_name, repo_name, comment_id, params={}) set :user => user_name, :repo => repo_name assert_presence_of user, repo, comment_id normalize! params assert_required_keys(REQUIRED_COMMENT_OPTIONS, params) patch_request("/repos/#{user}/#{repo}/comments/#{comment_id}", params) end