# File lib/nokogiri/xml/builder.rb, line 18
      def text string
        node = Nokogiri::XML::Text.new(string.to_s, @doc)
        insert(node)
      end