# File lib/rdoc/context.rb, line 498
  def add_section title, comment = nil
    if section = @sections[title] then
      section.comment = comment if comment
    else
      section = Section.new self, title, comment
      @sections[title] = section
    end

    section
  end