class Redd::Objects::Comment

A comment that can be made on a link.

Public Instance Methods

replies() click to toggle source

@return [Listing] The comment's replies.

# File lib/redd/objects/comment.rb, line 17
def replies
  @replies ||= (client.object_from_body(self[:replies]) || [])
end