diff options
author | Dmitry Jemerov <yole@jetbrains.com> | 2015-02-09 21:05:56 +0100 |
---|---|---|
committer | Dmitry Jemerov <yole@jetbrains.com> | 2015-02-09 21:05:56 +0100 |
commit | 25592f52ea3e70e183a2a72bc411346b1650ed9a (patch) | |
tree | aeee47c29bf4ecb5ef614ef164d1c7f331d194e7 /src/Model | |
parent | 0b6f2b22f972b8e62f1d5eece72aea93043ffb90 (diff) | |
download | dokka-25592f52ea3e70e183a2a72bc411346b1650ed9a.tar.gz dokka-25592f52ea3e70e183a2a72bc411346b1650ed9a.tar.bz2 dokka-25592f52ea3e70e183a2a72bc411346b1650ed9a.zip |
correctly render @see links
Diffstat (limited to 'src/Model')
-rw-r--r-- | src/Model/Content.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Model/Content.kt b/src/Model/Content.kt index e59037d2..bb0ff00f 100644 --- a/src/Model/Content.kt +++ b/src/Model/Content.kt @@ -58,8 +58,8 @@ public class Content() : ContentNode() { public val sections: List<ContentSection> get() = sectionList - fun addSection(name: String?, subjectName: String?): ContentSection { - val section = ContentSection(name ?: "", subjectName) + fun addSection(tag: String?, subjectName: String?): ContentSection { + val section = ContentSection(tag ?: "", subjectName) sectionList.add(section) return section } |