aboutsummaryrefslogtreecommitdiff
path: root/src/Kotlin
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 /src/Kotlin
parente27fb69817b1417c1bc556a507b14f2700c7a736 (diff)
downloaddokka-e1f7ce7a16954d238345fe0e30257492c0886f37.tar.gz
dokka-e1f7ce7a16954d238345fe0e30257492c0886f37.tar.bz2
dokka-e1f7ce7a16954d238345fe0e30257492c0886f37.zip
~ see also
Diffstat (limited to 'src/Kotlin')
-rw-r--r--src/Kotlin/DocumentationBuilder.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Kotlin/DocumentationBuilder.kt b/src/Kotlin/DocumentationBuilder.kt
index eda69841..8e36ae43 100644
--- a/src/Kotlin/DocumentationBuilder.kt
+++ b/src/Kotlin/DocumentationBuilder.kt
@@ -210,7 +210,7 @@ class DocumentationBuilder(val resolutionFacade: ResolutionFacade,
private fun MutableContent.addTagToSeeAlso(descriptor: DeclarationDescriptor, seeTag: KDocTag) {
val subjectName = seeTag.getSubjectName()
if (subjectName != null) {
- val seeSection = findSectionByTag("See Also") ?: addSection("See Also", null)
+ val seeSection = findSectionByTag(ContentTags.SeeAlso) ?: addSection(ContentTags.SeeAlso, null)
val link = resolveContentLink(descriptor, subjectName)
link.append(ContentText(subjectName))
val para = ContentParagraph()