Fix Array.iterator doc

This commit is contained in:
Abduqodiri Qurbonzoda
2021-04-16 04:01:24 +03:00
parent 8a1855e4da
commit b5e3dc414f
+1 -1
View File
@@ -52,7 +52,7 @@ public class Array<T> {
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<T>
}