Method: Nitro::XmlHelper#comment!

Defined in:
lib/nitro/helper/xml.rb

#comment!(str) ⇒ Object

Emit a comment.



77
78
79
80
81
# File 'lib/nitro/helper/xml.rb', line 77

def comment!(str)
  self << "<!-- #{str} -->" 

  return self
end