Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit 95f717d

Browse files
committed
Don't repeat header in global page
1 parent 869be1a commit 95f717d

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

Sources/swift-doc/Supporting Types/Pages/GlobalPage.swift

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,9 @@ struct GlobalPage: Page {
2222

2323
var document: CommonMark.Document {
2424
return Document {
25-
Heading { name }
26-
27-
Section {
28-
ForEach(in: symbols) { symbol in
29-
Heading { symbol.id.description }
30-
Documentation(for: symbol, in: module)
31-
}
25+
ForEach(in: symbols) { symbol in
26+
Heading { symbol.id.description }
27+
Documentation(for: symbol, in: module)
3228
}
3329
}
3430
}

0 commit comments

Comments
 (0)