core: fix typos in doc of CircularArray
[nit.git] / src / doc / doc_phases / doc_hierarchies.nit
index 61a9b08..fa9de2d 100644 (file)
@@ -41,7 +41,7 @@ end
 redef class MModulePage
        redef fun build_inh_list(v, doc) do
                var id = mentity.nitdoc_id
-               var section = new ImportationListSection("{id}.importation", mentity)
+               var section = new TabbedGroup("{id}.importation", "Dependencies")
                var group = new PanelGroup("list.group", "List")
                var imports = self.imports.to_a
                v.name_sorter.sort(imports)
@@ -58,7 +58,7 @@ end
 redef class MClassPage
        redef fun build_inh_list(v, doc) do
                var id = mentity.nitdoc_id
-               var section = new InheritanceListSection("{id}.inheritance", mentity)
+               var section = new TabbedGroup("{id}.inheritance", "Inheritance")
                var group = new PanelGroup("list.group", "List")
                var parents = self.parents.to_a
                v.name_sorter.sort(parents)
@@ -77,15 +77,3 @@ redef class MClassPage
                root.children.first.children.insert(section, 1)
        end
 end
-
-# FIXME diff hack
-class ImportationListSection
-       super TabbedGroup
-       super MEntityComposite
-end
-
-# FIXME diff hack
-class InheritanceListSection
-       super TabbedGroup
-       super MEntityComposite
-end