diff options
author | Sergey Mashkov <sergey.mashkov@jetbrains.com> | 2015-08-04 18:47:25 +0300 |
---|---|---|
committer | Sergey Mashkov <sergey.mashkov@jetbrains.com> | 2015-08-04 18:47:25 +0300 |
commit | e1f7ce7a16954d238345fe0e30257492c0886f37 (patch) | |
tree | 3a8ceba41a00fedc7c58534cf6b8d40983affaa1 /src/Java/JavaDocumentationBuilder.kt | |
parent | e27fb69817b1417c1bc556a507b14f2700c7a736 (diff) | |
download | dokka-e1f7ce7a16954d238345fe0e30257492c0886f37.tar.gz dokka-e1f7ce7a16954d238345fe0e30257492c0886f37.tar.bz2 dokka-e1f7ce7a16954d238345fe0e30257492c0886f37.zip |
~ see also
Diffstat (limited to 'src/Java/JavaDocumentationBuilder.kt')
-rw-r--r-- | src/Java/JavaDocumentationBuilder.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Java/JavaDocumentationBuilder.kt b/src/Java/JavaDocumentationBuilder.kt index fdd385fb..aae82c18 100644 --- a/src/Java/JavaDocumentationBuilder.kt +++ b/src/Java/JavaDocumentationBuilder.kt @@ -112,7 +112,7 @@ public class JavaDocumentationBuilder(private val options: DocumentationOptions, if (linkElement == null) { return } - val seeSection = findSectionByTag("See Also") ?: addSection("See Also", null) + val seeSection = findSectionByTag(ContentTags.SeeAlso) ?: addSection(ContentTags.SeeAlso, null) val linkSignature = resolveLink(linkElement) val text = ContentText(linkElement.getText()) if (linkSignature != null) { |