follow style guide for void match/switch cases Replace instances of `case _ => yield;` with `case _ => void;` and reorder certain cases to align with the style guide.
1 files changed, 1 insertions(+), 2 deletions(-) M reader.ha
M reader.ha => reader.ha +1 -2
@@ 100,8 100,7 @@ export fn skip(ent: *entry) (void | io::error) = { match (io::seek(ent.src, amt: io::off, io::whence::CUR)) { case io::off => return; - case io::error => - yield; + case io::error => void; }; io::copy(io::empty, ent)?; };