From 666a89dfd16d4ff4cf3fd7dad7d7ec839f0c7362 Mon Sep 17 00:00:00 2001 From: Ilya Gorbunov Date: Thu, 9 Jan 2020 23:59:30 +0300 Subject: [PATCH] Improve terminological consistency in KClass docs (cherry picked from commit b7a938607d93d26638145fdca1ebbea5411e0f34) --- runtime/src/main/kotlin/kotlin/reflect/KClass.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/src/main/kotlin/kotlin/reflect/KClass.kt b/runtime/src/main/kotlin/kotlin/reflect/KClass.kt index 585050e0725..d6906cc0903 100644 --- a/runtime/src/main/kotlin/kotlin/reflect/KClass.kt +++ b/runtime/src/main/kotlin/kotlin/reflect/KClass.kt @@ -16,13 +16,13 @@ package kotlin.reflect public actual interface KClass : KDeclarationContainer, KAnnotatedElement, KClassifier { /** * The simple name of the class as it was declared in the source code, - * or `null` if the class has no name (if, for example, it is an anonymous object literal). + * or `null` if the class has no name (if, for example, it is a class of an anonymous object). */ public actual val simpleName: String? /** * The fully qualified dot-separated name of the class, - * or `null` if the class is local or it is an anonymous object literal. + * or `null` if the class is local or a class of an anonymous object. */ public actual val qualifiedName: String?