class Github::Gists::Comments
def edit(gist_id, comment_id, params={})
github.gists.comments.edit 'gist-id', 'comment-id'
github = Github.new
= Examples
Edit a comment
def edit(gist_id, comment_id, params={}) normalize! params assert_presence_of comment_id filter! VALID_GIST_COMMENT_OPTIONS, params assert_required_keys(REQUIRED_GIST_COMMENT_OPTIONS, params) patch_request("/gists/#{gist_id}/comments/#{comment_id}", params) end