# File lib/xml/dom2/dombuilder.rb, line 236
      def comment(data)
        text
        comment = @document.createComment(data)
        @current.appendChild(comment)
      end