method
documented?
ruby latest stable - Class:
RDoc ::ClassModule
documented?()public
Does this class or module have a comment with content or is #received_nodoc true?
# File lib/rdoc/class_module.rb, line 241
def documented?
return true if @received_nodoc
return false if @comment_location.empty?
@comment_location.any? { |comment, _| not comment.empty? }
end