class Github::PullRequests::Comments
def edit(user_name, repo_name, comment_id, params={})
"body" => "Nice change"
github.pull_requests.comments.edit 'user-name', 'repo-name','comment-id',
github = Github.new
= Examples
* :body - Required string
= Inputs
Edit a pull request comment
def edit(user_name, repo_name, comment_id, params={}) _update_user_repo_params(user_name, repo_name) _validate_user_repo_params(user, repo) unless user? && repo? _validate_presence_of comment_id normalize! params # _merge_mime_type(:pull_comment, params) filter! VALID_REQUEST_COM_PARAM_NAMES, params patch_request("/repos/#{user}/#{repo}/pulls/comments/#{comment_id}", params) end