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={}) _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(: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}") end