From b5e3dc414f9c0dba7076e878223902dfe470a9e8 Mon Sep 17 00:00:00 2001 From: Abduqodiri Qurbonzoda Date: Fri, 16 Apr 2021 04:01:24 +0300 Subject: [PATCH] Fix Array.iterator doc --- core/builtins/native/kotlin/Array.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/builtins/native/kotlin/Array.kt b/core/builtins/native/kotlin/Array.kt index 6bc1992f995..0853144061c 100644 --- a/core/builtins/native/kotlin/Array.kt +++ b/core/builtins/native/kotlin/Array.kt @@ -52,7 +52,7 @@ public class Array { public val size: Int /** - * Creates an iterator for iterating over the elements of the array. + * Creates an [Iterator] for iterating over the elements of the array. */ public operator fun iterator(): Iterator }