Minor, fix formatting in Arrays.kt in stdlib

This commit is contained in:
Alexander Udalov
2014-11-14 20:36:32 +03:00
parent 74d00979d4
commit 36a9a99b4f
@@ -24,5 +24,5 @@ public val DoubleArray.lastIndex : Int
public val CharArray.lastIndex: Int public val CharArray.lastIndex: Int
get() = this.size - 1 get() = this.size - 1
public val <T: Any?> Array<out T>.lastIndex : Int public val Array<*>.lastIndex: Int
get() = this.size - 1 get() = this.size - 1