Fix at most

pull/1837/head
mlykotom 3 years ago
parent 72fd04d59c
commit 2b15d60ef8

@ -35,7 +35,7 @@ fun untilHasChildren(
return when (op) {
AT_LEAST -> element.childCount >= childCount
EXACTLY -> element.childCount == childCount
AT_MOST -> element.childCount < childCount
AT_MOST -> element.childCount <= childCount
}
}
}

Loading…
Cancel
Save