#KT-3381 fixed.

Corrected documentation misspelling.
This commit is contained in:
Yurii Samsoniuk
2013-03-09 15:32:50 +02:00
parent 6f31fd7bd4
commit b39d3bec5a
+1 -1
View File
@@ -20,7 +20,7 @@ public inline fun assertNot(message: String, block: ()-> Boolean) {
assertTrue(message){ !block() }
}
/** Asserts that the given block returns true */
/** Asserts that the given block returns false */
public inline fun assertNot(block: ()-> Boolean) : Unit = assertNot(block.toString(), block)
/** Asserts that the expression is true with an optional message */