ClosedBit error docs

CB_ERR_ASSERTION

Assertion failed. A program assertion evaluated to false.

Why it happens

A program assertion evaluated to false.

How to fix it

Fix the condition or handle the invalid state before the assertion.

Copy-paste fix pattern
fn main() {
    assert(player_health >= 0, "health cannot be negative")
}
Runtime and Studio now show this kind of page from the error dialog: plain message first, stable code second, original details third.