Method: XML::DOM::DOMBuilder#comment

Defined in:
lib/xml/dom2/dombuilder.rb

#comment(data) ⇒ Object



236
237
238
239
240
# File 'lib/xml/dom2/dombuilder.rb', line 236

def comment(data)
  text
  comment = @document.createComment(data)
  @current.appendChild(comment)
end