remove_private_comments(comment)
Removes private comments from comment
# File lib/rdoc/parser/c.rb, line 1026 def remove_private_comments(comment) comment.gsub!(/\/?\*--\n(.*?)\/?\*\+\+/, '') comment.sub!(/\/?\*--\n.*/, '') end