yeet!
Replace return Err(x) and return None with:
return Err(x)
return None
```rust fn foo() -> Option { yeet!(); }
fn bar() -> Result { yeet!(42); }
fn baz(x: u32) -> Result { if x % 2 == 1 { yeet!(x); } Ok(x) } ```
That's pretty much it.