class IniParse::Generator

def comment(comment, opts = {})


comment:: The text for the comment line.
==== Parameters

Adds a new comment line to the document.
def comment(comment, opts = {})
  @context.lines << Lines::Comment.new(
    line_options(opts.merge(:comment => comment))
  )
end