From b064b947ce96a3dc5739447c4972e28c5bef382e Mon Sep 17 00:00:00 2001 From: Alexander Udalov Date: Wed, 10 Jun 2015 02:03:22 +0300 Subject: [PATCH] Minor, add missing kdoc on Function's type parameter --- core/builtins/src/kotlin/Function.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/builtins/src/kotlin/Function.kt b/core/builtins/src/kotlin/Function.kt index 4002a56dabb..3234657a686 100644 --- a/core/builtins/src/kotlin/Function.kt +++ b/core/builtins/src/kotlin/Function.kt @@ -18,5 +18,7 @@ package kotlin /** * Represents a value of a functional type, such as a lambda, a function expression or a function reference. + * + * @param R return type of the function. */ public interface Function