From a48e1680e97de6516d42656c82a7f157f7120da4 Mon Sep 17 00:00:00 2001 From: Alexander Udalov Date: Mon, 4 Jul 2016 20:05:36 +0300 Subject: [PATCH] Minor, fix typo in KParameter#isOptional kdoc --- core/builtins/src/kotlin/reflect/KParameter.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/builtins/src/kotlin/reflect/KParameter.kt b/core/builtins/src/kotlin/reflect/KParameter.kt index 0cc07c84eb9..7c05dfa0ce3 100644 --- a/core/builtins/src/kotlin/reflect/KParameter.kt +++ b/core/builtins/src/kotlin/reflect/KParameter.kt @@ -62,7 +62,7 @@ public interface KParameter : KAnnotatedElement { } /** - * `true` if this parameter is optional and can be omitted when making a call via [KCallable.call], or `false` otherwise. + * `true` if this parameter is optional and can be omitted when making a call via [KCallable.callBy], or `false` otherwise. * * A parameter is optional in any of the two cases: * 1. The default value is provided at the declaration of this parameter.