aboutsummaryrefslogtreecommitdiff
path: root/javadoc/src/main
diff options
context:
space:
mode:
authorSergey Mashkov <sergey.mashkov@jetbrains.com>2015-08-04 18:47:25 +0300
committerSergey Mashkov <sergey.mashkov@jetbrains.com>2015-08-04 18:47:25 +0300
commite1f7ce7a16954d238345fe0e30257492c0886f37 (patch)
tree3a8ceba41a00fedc7c58534cf6b8d40983affaa1 /javadoc/src/main
parente27fb69817b1417c1bc556a507b14f2700c7a736 (diff)
downloaddokka-e1f7ce7a16954d238345fe0e30257492c0886f37.tar.gz
dokka-e1f7ce7a16954d238345fe0e30257492c0886f37.tar.bz2
dokka-e1f7ce7a16954d238345fe0e30257492c0886f37.zip
~ see also
Diffstat (limited to 'javadoc/src/main')
-rw-r--r--javadoc/src/main/kotlin/docbase.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/javadoc/src/main/kotlin/docbase.kt b/javadoc/src/main/kotlin/docbase.kt
index aa1e01a6..a513a3e1 100644
--- a/javadoc/src/main/kotlin/docbase.kt
+++ b/javadoc/src/main/kotlin/docbase.kt
@@ -57,7 +57,7 @@ open class DocumentationNodeAdapter(val module: ModuleNodeAdapter, docNode: Docu
override fun firstSentenceTags(): Array<out Tag> = buildInlineTags(module, this, docNode.summary).toTypedArray()
override fun tags(): Array<out Tag> = (buildInlineTags(module, this, docNode.content) + docNode.content.sections.flatMap {
when (it.tag) {
- "See Also" -> buildInlineTags(module, this, it)
+ ContentTags.SeeAlso -> buildInlineTags(module, this, it)
else -> emptyList<Tag>()
}
}).toTypedArray()