diff options
author | Simon Ogorodnik <sem-oro@yandex.ru> | 2016-12-06 16:25:30 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-06 16:25:30 +0300 |
commit | 378be37160fde0041cf88f3dfa53e9db3ec3e219 (patch) | |
tree | 42c3a46f9d460b9fd75dea3d6560bcebeb4a78fc /core/src/main/kotlin/Model/DocumentationReference.kt | |
parent | 2d03ad01f650bc997dce076abaab0a61c2301a96 (diff) | |
download | dokka-378be37160fde0041cf88f3dfa53e9db3ec3e219.tar.gz dokka-378be37160fde0041cf88f3dfa53e9db3ec3e219.tar.bz2 dokka-378be37160fde0041cf88f3dfa53e9db3ec3e219.zip |
KT-14818 Render function type argument names in generated documentation (#116)
Fix for KT-14818 Render function type argument names in generated documentation
* Fixup, unescape name, before passing to identifier
* Fixup
Diffstat (limited to 'core/src/main/kotlin/Model/DocumentationReference.kt')
-rw-r--r-- | core/src/main/kotlin/Model/DocumentationReference.kt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/src/main/kotlin/Model/DocumentationReference.kt b/core/src/main/kotlin/Model/DocumentationReference.kt index 0c87d719..0165b567 100644 --- a/core/src/main/kotlin/Model/DocumentationReference.kt +++ b/core/src/main/kotlin/Model/DocumentationReference.kt @@ -16,6 +16,7 @@ enum class RefKind { Superclass, Override, Annotation, + HiddenAnnotation, Deprecation, TopLevelPage } |