aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/src/main/kotlin/translators
diff options
context:
space:
mode:
authorPaweł Marks <pmarks@virtuslab.com>2020-03-11 18:08:41 +0100
committerBłażej Kardyś <bkardys@virtuslab.com>2020-03-12 11:05:36 +0100
commite5a5f152c3ba9ee3d533ca35e62e45ac2e69ffe1 (patch)
treeb9a2cf5903e1d8eb5bff9388ebcfd9aa21f06351 /plugins/base/src/main/kotlin/translators
parentdfe0059b242bd490d006f8304926f559362eb5e9 (diff)
downloaddokka-e5a5f152c3ba9ee3d533ca35e62e45ac2e69ffe1.tar.gz
dokka-e5a5f152c3ba9ee3d533ca35e62e45ac2e69ffe1.tar.bz2
dokka-e5a5f152c3ba9ee3d533ca35e62e45ac2e69ffe1.zip
Render types for properties
Diffstat (limited to 'plugins/base/src/main/kotlin/translators')
-rw-r--r--plugins/base/src/main/kotlin/translators/documentables/DefaultPageCreator.kt3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/base/src/main/kotlin/translators/documentables/DefaultPageCreator.kt b/plugins/base/src/main/kotlin/translators/documentables/DefaultPageCreator.kt
index 79f876bf..560bda71 100644
--- a/plugins/base/src/main/kotlin/translators/documentables/DefaultPageCreator.kt
+++ b/plugins/base/src/main/kotlin/translators/documentables/DefaultPageCreator.kt
@@ -79,10 +79,11 @@ open class DefaultPageCreator(
}
block("Properties", 2, ContentKind.Properties, s.properties, platformData.toSet()) {
link(it.name, it.dri)
+ +buildSignature(it)
+ breakLine()
group(kind = ContentKind.BriefComment) {
text(it.briefDocumentation())
}
-
}
}