# File lib/rdoc/class_module.rb, line 609
  def update_includes
    includes.reject! do |include|
      mod = include.module
      !(String === mod) && RDoc::TopLevel.all_modules_hash[mod.full_name].nil?
    end

    includes.uniq!
  end