class IniParse::Lines::Comment

def comment


but without a comment, just the seperator will be returned.
In rare cases where a comment seperator appeared in the original file,

separator at the beginning of the string.
Returns the inline comment for this line. Includes the comment
def comment
  @comment !~ /\S/ ? @comment_sep : super
end