diff options
author | Filip Zybała <fzybala@virtuslab.com> | 2020-06-17 09:59:19 +0200 |
---|---|---|
committer | Kamil Doległo <9080183+kamildoleglo@users.noreply.github.com> | 2020-06-18 14:24:45 +0200 |
commit | c853a41545d461fee7af6f0e8aad11569c7d7d53 (patch) | |
tree | 078403aced52a3d012b2f3e9b8e6b31d9c867202 /core/src/main | |
parent | ad9f1289015627997b822f99579750805ea2f553 (diff) | |
download | dokka-c853a41545d461fee7af6f0e8aad11569c7d7d53.tar.gz dokka-c853a41545d461fee7af6f0e8aad11569c7d7d53.tar.bz2 dokka-c853a41545d461fee7af6f0e8aad11569c7d7d53.zip |
Added descriptions with type and location to distinguish symbols with name-clash
Diffstat (limited to 'core/src/main')
-rw-r--r-- | core/src/main/kotlin/pages/ContentNodes.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/kotlin/pages/ContentNodes.kt b/core/src/main/kotlin/pages/ContentNodes.kt index b9a50cb6..1b9c937d 100644 --- a/core/src/main/kotlin/pages/ContentNodes.kt +++ b/core/src/main/kotlin/pages/ContentNodes.kt @@ -213,7 +213,7 @@ interface Kind enum class ContentKind : Kind { Comment, Constructors, Functions, Parameters, Properties, Classlikes, Packages, Symbol, Sample, Main, BriefComment, - Empty, Source, TypeAliases, Cover, Inheritors, SourceSetDependantHint; + Empty, Source, TypeAliases, Cover, Inheritors, SourceSetDependantHint, Annotations; companion object { private val platformTagged = |