Fix at most

pull/458/head
mlykotom 2 years ago
parent 7ebc718ca0
commit 1eb3a28fe3

@ -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