mangle_comment(comment)
Remove the /*‘s and leading asterisks from C comments
# File lib/rdoc/parser/c.rb, line 620 def mangle_comment(comment) comment.sub!(%{/\*+}) { " " * $&.length } comment.sub!(%{\*+/}) { " " * $&.length } comment.gsub!(/^[ \t]*\*/) { " " * $&.length } comment end