Skip to content

Commit db190fe

Browse files
authored
Updates the symbol page layout so the Return Value section comes after the Parameters section. (#382)
rdar://93177278
1 parent 566a177 commit db190fe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Sources/SwiftDocC/Model/Rendering/RenderNodeTranslator.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1145,8 +1145,8 @@ public struct RenderNodeTranslator: SemanticVisitor {
11451145
renderNode: &node,
11461146
translators: [
11471147
DeclarationsSectionTranslator(),
1148-
ReturnsSectionTranslator(),
11491148
ParametersSectionTranslator(),
1149+
ReturnsSectionTranslator(),
11501150
DiscussionSectionTranslator(),
11511151
]
11521152
)

Tests/SwiftDocCTests/Indexing/IndexingTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ class IndexingTests: XCTestCase {
237237
title: "MyProtocol",
238238
summary: "An abstract of a protocol using a String id value.",
239239
headings: ["Return Value", "Discussion"],
240-
rawIndexableTextContent: "An abstract of a protocol using a String id value. Return Value A String id value. A name of the item to find. Discussion Further discussion. Exercise links to symbols: relative MyClass and absolute MyClass. Exercise unresolved symbols: unresolved MyUnresolvedSymbol. Exercise known unresolvable symbols: know unresolvable NSCodable. Exercise external references: doc://com.test.external/ExternalPage One ordered Two ordered Three ordered One unordered Two unordered Three unordered",
240+
rawIndexableTextContent: "An abstract of a protocol using a String id value. A name of the item to find. Return Value A String id value. Discussion Further discussion. Exercise links to symbols: relative MyClass and absolute MyClass. Exercise unresolved symbols: unresolved MyUnresolvedSymbol. Exercise known unresolvable symbols: know unresolvable NSCodable. Exercise external references: doc://com.test.external/ExternalPage One ordered Two ordered Three ordered One unordered Two unordered Three unordered",
241241
platforms: expectedPlatformInformation),
242242
indexingRecords[0])
243243
}

0 commit comments

Comments
 (0)