KT-3715 updated java-doc

"not" was missing in the java-doc for "notEmpty" property
This commit is contained in:
Mohammad Shamsi
2013-08-20 14:00:28 +08:00
parent 5584e6ce18
commit 846de273a6
+1 -1
View File
@@ -19,7 +19,7 @@ val Int.indices: IntRange
/** Returns true if the collection is not empty */
public inline fun <T> Collection<T>.isNotEmpty() : Boolean = !this.isEmpty()
/** Returns true if this collection is empty */
/** Returns true if this collection is not empty */
val Collection<*>.notEmpty : Boolean
get() = isNotEmpty()