We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c0c559 commit 7b37a91Copy full SHA for 7b37a91
Changelog.md
@@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
10
### Fixed
11
12
+- Fixed listing of function parameters, when generating CommonMark documentation.
13
+ #170 by @domcorvasce.
14
+
15
- Fixed version number for swift-doc command.
16
#159 by @mattt.
17
Sources/swift-doc/Supporting Types/Components/Documentation.swift
@@ -49,7 +49,7 @@ struct Documentation: Component {
49
Section {
50
Heading { "Parameters" }
51
List(of: documentation.parameters) { parameter in
52
- Fragment { "\(parameter.name): \(parameter.description)" }
+ Fragment { "\(parameter.name): \(parameter.content)" }
53
}
54
55
0 commit comments