From 2821448dd8e1816a4095187b48d00b1eff685eef Mon Sep 17 00:00:00 2001 From: Alexander Udalov Date: Tue, 1 Dec 2015 20:20:48 +0300 Subject: [PATCH] Minor, simplify kdoc for KClass#qualifiedName --- core/builtins/src/kotlin/reflect/KClass.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/builtins/src/kotlin/reflect/KClass.kt b/core/builtins/src/kotlin/reflect/KClass.kt index 442b90fe799..cc14c413e66 100644 --- a/core/builtins/src/kotlin/reflect/KClass.kt +++ b/core/builtins/src/kotlin/reflect/KClass.kt @@ -32,8 +32,7 @@ public interface KClass : KDeclarationContainer, KAnnotatedElement { public val simpleName: String? /** - * The fully qualified name of the class which consists of names of the declaring package, - * all outer classes of this class and the class itself separated by dots, + * The fully qualified dot-separated name of the class, * or `null` if the class is local or it is an anonymous object literal. */ public val qualifiedName: String?