KT-22815: Put colon after section names

This commit is contained in:
Simon Ogorodnik
2018-07-11 15:35:53 +03:00
parent b237298c20
commit 6e95ae7393
@@ -105,7 +105,7 @@ object KDocRenderer {
}
private fun StringBuilder.renderSection(title: String, content: StringBuilder.() -> Unit) {
append(SECTION_HEADER_START, title, SECTION_SEPARATOR)
append(SECTION_HEADER_START, title, ":", SECTION_SEPARATOR)
content()
append(SECTION_END)
}