aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/kotlin/Model
diff options
context:
space:
mode:
authorSimon Ogorodnik <sem-oro@yandex.ru>2016-11-29 15:53:40 +0300
committerGitHub <noreply@github.com>2016-11-29 15:53:40 +0300
commitedda34b73bbbd9537eb499668c47a7a901b284c2 (patch)
treec8eac1b67b688f036740f5a8bfac492dcd91c202 /core/src/main/kotlin/Model
parent4b2c12c651df3ee8b3ab680edbce4e257c204a3d (diff)
parentf3dd7eb1d36913920e431c88a633cf5c5e098820 (diff)
downloaddokka-edda34b73bbbd9537eb499668c47a7a901b284c2.tar.gz
dokka-edda34b73bbbd9537eb499668c47a7a901b284c2.tar.bz2
dokka-edda34b73bbbd9537eb499668c47a7a901b284c2.zip
Merge pull request #119 from Kotlin/0.9.10/GH-115
Fix for #115 `@param` and `@return` tags is missing in javadoc output
Diffstat (limited to 'core/src/main/kotlin/Model')
-rw-r--r--core/src/main/kotlin/Model/Content.kt4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/src/main/kotlin/Model/Content.kt b/core/src/main/kotlin/Model/Content.kt
index 0a38a524..1a8bc5d2 100644
--- a/core/src/main/kotlin/Model/Content.kt
+++ b/core/src/main/kotlin/Model/Content.kt
@@ -131,6 +131,8 @@ class ContentSection(val tag: String, val subjectName: String?) : ContentBlock()
object ContentTags {
val Description = "Description"
val SeeAlso = "See Also"
+ val Return = "Return"
+ val Exceptions = "Exceptions"
}
fun content(body: ContentBlock.() -> Unit): ContentBlock {
@@ -236,6 +238,6 @@ open class MutableContent() : Content() {
fun javadocSectionDisplayName(sectionName: String?): String? =
when(sectionName) {
"param" -> "Parameters"
- "throws", "exception" -> "Exceptions"
+ "throws", "exception" -> ContentTags.Exceptions
else -> sectionName?.capitalize()
}