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={})
  set :user => user_name, :repo => repo_name
  assert_presence_of user, repo, 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