KT-22815: Use 'Params' instead of 'Parameters' to save h-space

This commit is contained in:
Simon Ogorodnik
2018-07-11 15:36:55 +03:00
parent 6e95ae7393
commit 0b9d4a93dd
@@ -60,7 +60,7 @@ object KDocRenderer {
fun StringBuilder.appendKDocSection(section: KDocSection) {
renderTag(section.findTagByName("receiver"), "Receiver", this)
val paramTags = section.findTagsByName("param").filter { it.getSubjectName() != null }
renderTagList(paramTags, "Parameters", this)
renderTagList(paramTags, "Params", this)
renderTag(section.findTagByName("return"), "Returns", this)