diff options
author | Sergey Mashkov <sergey.mashkov@jetbrains.com> | 2015-08-06 11:36:38 +0300 |
---|---|---|
committer | Sergey Mashkov <sergey.mashkov@jetbrains.com> | 2015-08-06 11:36:38 +0300 |
commit | 4ed808d935125ab370d988f9cb32d96839959964 (patch) | |
tree | 1efa5411da382a87ac442f728e4275142a634e07 /src/Model | |
parent | 6012a2842da93a03c72e6ef6ccc4ed5097801610 (diff) | |
download | dokka-4ed808d935125ab370d988f9cb32d96839959964.tar.gz dokka-4ed808d935125ab370d988f9cb32d96839959964.tar.bz2 dokka-4ed808d935125ab370d988f9cb32d96839959964.zip |
~ description constant
Diffstat (limited to 'src/Model')
-rw-r--r-- | src/Model/Content.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Model/Content.kt b/src/Model/Content.kt index cd387b61..0bb78454 100644 --- a/src/Model/Content.kt +++ b/src/Model/Content.kt @@ -150,7 +150,7 @@ public open class MutableContent() : Content() { if (descriptionNodes.isEmpty()) { ContentEmpty } else { - val result = ContentSection("Description", null) + val result = ContentSection(ContentTags.Description, null) result.children.addAll(descriptionNodes) result } |