diff --git a/docs/rust/rust.md b/docs/rust/rust.md index a12ab45..c6c2f1a 100644 --- a/docs/rust/rust.md +++ b/docs/rust/rust.md @@ -288,6 +288,7 @@ if let = { let optional = Some(value); match optional { Some(param) => { /* do something */ }, + Some(ref param) => { /* borrow value instead of moving */ } _ => {}, }; ```