Skip to content

Commit

Permalink
SQUASHME: Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ilmat192 committed Aug 23, 2018
1 parent 902b9f6 commit 0fd2e29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend.native/tests/runtime/collections/SortWith.kt
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ val comparators = listOf<ComparatorInfo>(
ComparatorInfo("Incorrect decreasing", Comparator { a ,b -> if (a < b) 1 else -1 }, false),
ComparatorInfo("Always 1", Comparator { a ,b -> 1 }, false),
ComparatorInfo("Always -1", Comparator { a ,b -> -1 }, false),
ComparatorInfo("Alwasy 0", Comparator { a ,b -> 0 }, false)
ComparatorInfo("Always 0", Comparator { a ,b -> 0 }, false)
)

val arrays = listOf<Array<Int>>(
Expand Down

0 comments on commit 0fd2e29

Please sign in to comment.