diff options
| author | Dmitry Jemerov <yole@jetbrains.com> | 2015-05-27 20:10:07 +0200 | 
|---|---|---|
| committer | Dmitry Jemerov <yole@jetbrains.com> | 2015-05-27 20:10:07 +0200 | 
| commit | fbe64b535556e66ff7f410e80ddda4f207172c88 (patch) | |
| tree | d7d94527a2068699293bad24e2ed2c76e3abe407 /src | |
| parent | 5f46416a73f596fed7b9498997ad359bd057d19e (diff) | |
| download | dokka-fbe64b535556e66ff7f410e80ddda4f207172c88.tar.gz dokka-fbe64b535556e66ff7f410e80ddda4f207172c88.tar.bz2 dokka-fbe64b535556e66ff7f410e80ddda4f207172c88.zip | |
generate 'interface' keyword instead of 'trait'
Diffstat (limited to 'src')
| -rw-r--r-- | src/Kotlin/KotlinLanguageService.kt | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/Kotlin/KotlinLanguageService.kt b/src/Kotlin/KotlinLanguageService.kt index a8c9bc64..8809a630 100644 --- a/src/Kotlin/KotlinLanguageService.kt +++ b/src/Kotlin/KotlinLanguageService.kt @@ -229,7 +229,7 @@ class KotlinLanguageService : LanguageService {          renderAnnotationsForNode(node)          when (node.kind) {              DocumentationNode.Kind.Class -> keyword("class ") -            DocumentationNode.Kind.Interface -> keyword("trait ") +            DocumentationNode.Kind.Interface -> keyword("interface ")              DocumentationNode.Kind.Enum -> keyword("enum class ")              DocumentationNode.Kind.AnnotationClass -> keyword("annotation class ")              DocumentationNode.Kind.EnumItem -> keyword("enum val ") | 
