Skip to content

Commit

Permalink
Fix documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ndkoval committed Apr 24, 2020
1 parent acf80d2 commit 30c7bca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ class MyLockFreeListTest {
private val list = MyLockFreeList<Int>()

@Validate
fun checkNoRemovedNodesInTheList() = check(list.hasRemovedNodes()) {
fun checkNoRemovedNodesInTheList() = check(!list.hasRemovedNodes()) {
"The list contains logically removed nodes while all the operations are completed: $list"
}

Expand Down

0 comments on commit 30c7bca

Please sign in to comment.