aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/user/assists.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/user/assists.md b/docs/user/assists.md
index f737a2fa4..9861332af 100644
--- a/docs/user/assists.md
+++ b/docs/user/assists.md
@@ -527,6 +527,22 @@ fn main() {
527} 527}
528``` 528```
529 529
530## `remove_mut`
531
532Removes the `mut` keyword.
533
534```rust
535// BEFORE
536impl Walrus {
537 fn feed(&mut┃ self, amount: u32) {}
538}
539
540// AFTER
541impl Walrus {
542 fn feed(&self, amount: u32) {}
543}
544```
545
530## `replace_if_let_with_match` 546## `replace_if_let_with_match`
531 547
532Replaces `if let` with an else branch with a `match` expression. 548Replaces `if let` with an else branch with a `match` expression.