Method: Octokit::Client::Gists#update_gist_comment
- Defined in:
- lib/octokit/client/gists.rb
#update_gist_comment(gist_id, gist_comment_id, comment, options = {}) ⇒ Sawyer::Resource
Update gist comment
Requires authenticated client
214 215 216 217 |
# File 'lib/octokit/client/gists.rb', line 214 def update_gist_comment(gist_id, gist_comment_id, comment, = {}) = .merge({ body: comment }) patch "gists/#{gist_id}/comments/#{gist_comment_id}", end |