method

strip_hash_prefix!

v7.2.3 - Show latest stable - Class: Comment
strip_hash_prefix!()
private

No documentation available.

# File tools/rdoc-to-md, line 63
    def strip_hash_prefix!
      source_lines.each { |line|
        line.delete_prefix!("#")
        line.delete_prefix!(" ")
      }
    end