module Github::PullRequests::Comments
def edit_request_comment(user_name, repo_name, comment_id, params={})
@github.pull_requests.edit_request_comment 'user-name', 'repo-name', 'comment-id', "body" => "Nice change",
@github = Github.new
= Examples
* :body - Required string
= Inputs
Edit a pull request comment
def edit_request_comment(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_keys(params) _filter_params_keys(VALID_REQUEST_COM_PARAM_NAMES, params) patch("/repos/#{user}/#{repo}/pulls/comments/#{comment_id}", params) end