class Github::Issues::Comments

def edit(user_name, repo_name, comment_id, params={})


"body" => 'a new comment'
github.issues.comments.edit 'user-name', 'repo-name', 'comment-id',
github = Github.new
= Examples

:body Required string
= Inputs

Edit a 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(:issue_comment, params)
  filter! VALID_ISSUE_COMMENT_PARAM_NAME, params
  assert_required_keys(%w[ body ], params)
  patch_request("/repos/#{user}/#{repo}/issues/comments/#{comment_id}", params)
end