From b39d3bec5a57a677292a84287f37da9bef5ca312 Mon Sep 17 00:00:00 2001 From: Yurii Samsoniuk Date: Sat, 9 Mar 2013 15:32:50 +0200 Subject: [PATCH] #KT-3381 fixed. Corrected documentation misspelling. --- libraries/stdlib/src/kotlin/test/Test.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/stdlib/src/kotlin/test/Test.kt b/libraries/stdlib/src/kotlin/test/Test.kt index f26d0929885..8aef9079691 100644 --- a/libraries/stdlib/src/kotlin/test/Test.kt +++ b/libraries/stdlib/src/kotlin/test/Test.kt @@ -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 */