From 27544295736ff24c82a1a6987d2e9b51c005a099 Mon Sep 17 00:00:00 2001 From: Nikolay Krasko Date: Wed, 16 May 2018 20:30:22 +0300 Subject: [PATCH] Minor: fix in comment --- .../org/jetbrains/kotlin/descriptors/FunctionDescriptor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/descriptors/src/org/jetbrains/kotlin/descriptors/FunctionDescriptor.java b/core/descriptors/src/org/jetbrains/kotlin/descriptors/FunctionDescriptor.java index 537006ee9e6..bb0af3e2fc3 100644 --- a/core/descriptors/src/org/jetbrains/kotlin/descriptors/FunctionDescriptor.java +++ b/core/descriptors/src/org/jetbrains/kotlin/descriptors/FunctionDescriptor.java @@ -41,7 +41,7 @@ public interface FunctionDescriptor extends CallableMemberDescriptor { FunctionDescriptor substitute(@NotNull TypeSubstitutor substitutor); /** - * This method should be used with q Wgreat care, because if descriptor is substituted one, calling 'getOverriddenDescriptors' + * This method should be used with a great care, because if descriptor is substituted one, calling 'getOverriddenDescriptors' * may force lazy computation, that's unnecessary in most cases. * So, if 'getOriginal().getOverriddenDescriptors()' is enough for you, please use it instead. * @return