Method: IssuesComments#getIssueComment

Defined in:
lib/github/issues/issues_comments.rb

#getIssueComment(repo, id, user = nil) ⇒ Object



13
14
15
16
# File 'lib/github/issues/issues_comments.rb', line 13

def getIssueComment(repo, id, user=nil)
  url = 'repos/%s/%s/issues/comments/%s' % [user, repo, id]
  @github.get(url)
end