Minor: correct kdoc comment.

This commit is contained in:
Ilya Gorbunov
2015-05-12 12:25:27 +03:00
parent d6964525b2
commit 69a58d1f0e
@@ -14,6 +14,8 @@ public inline fun <reified T> Array(size: Int, init: (Int) -> T): Array<T> {
return result as Array<T>
}
// Returns an empty array of the specified type `T`.
/**
* Returns an empty array of the specified type [T].
*/
public inline fun <reified T> emptyArray(): Array<T> = arrayOfNulls<T>(0) as Array<T>