On Fri, Apr 11, 2025 at 09:09:37PM +0900, Alexandre Courbot wrote: > This is a feature I found useful to have while writing Nova driver code > that accessed registers alongside other operations. I would find myself > quite confused about whether the guard was held or dropped at a given > point of the code, and it felt like walking through a minefield; this > pattern makes things safer and easier to read according to my experience > writing nova-core code. > > Signed-off-by: Alexandre Courbot <acourbot@xxxxxxxxxx> With the following changes, applied to nova-next, thanks! * link `None`, `Some`, `Option` in doc-comment - Danilo