Probably easier to not have an "unused" branch that returns the same as the else branch in the example.
Signed-off-by: mikkurogue <mikkurogue@noreply.codeberg.org>
Update example text to give clarity on default/exhaustive case.
Reasoning:
The input for the example will not compile if user would want to test this for the logic of a labeled switch. Due the input not being an exhaustive input but rather "any u8 integer" (for the lack of better terminology) we need to use the else branch to indicate that the default case is handled, in this case by just emulating the '4' branch, but this could return an error.InvalidCaseProvided for example.
Signed-off-by: mikkurogue <michael.lindemans@outlook.com>