class MetaComment

Public Instance Methods

Calls superclass method Comment#write!
# File tools/rdoc-to-md, line 84
def write!(out, indentation)
  spaces = " " * indentation

  out << spaces << "##\n"                                # ##
  out << commented(source_lines[1], indentation) << "\n" # # :method: ...

  super
end