Minor, fix typo

This commit is contained in:
Alexander Udalov
2014-06-26 19:52:31 +04:00
parent 2ce4219b43
commit 46da00a9a7
+1 -1
View File
@@ -13,7 +13,7 @@ public inline fun assertTrue(message: String, block: ()-> Boolean) {
}
/** Asserts that the given block returns true */
public inline fun assertTrue(block: ()-> Boolean) : Unit = assertTrue("exprected true", block)
public inline fun assertTrue(block: ()-> Boolean) : Unit = assertTrue("expected true", block)
/** Asserts that the given block returns false */
public inline fun assertNot(message: String, block: ()-> Boolean) {