From 5ab32ba0dd61585459bb32bb31fe7b19493c980e Mon Sep 17 00:00:00 2001 From: Simon Ogorodnik Date: Mon, 28 Nov 2016 21:42:39 +0300 Subject: Fix for GH-115, `@param` and `@return` tags is missing in javadoc output --- core/src/main/kotlin/Model/Content.kt | 1 + 1 file changed, 1 insertion(+) (limited to 'core/src/main/kotlin/Model') diff --git a/core/src/main/kotlin/Model/Content.kt b/core/src/main/kotlin/Model/Content.kt index 0a38a524..7464d510 100644 --- a/core/src/main/kotlin/Model/Content.kt +++ b/core/src/main/kotlin/Model/Content.kt @@ -131,6 +131,7 @@ class ContentSection(val tag: String, val subjectName: String?) : ContentBlock() object ContentTags { val Description = "Description" val SeeAlso = "See Also" + val Return = "Return" } fun content(body: ContentBlock.() -> Unit): ContentBlock { -- cgit