diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/user/assists.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/user/assists.md b/docs/user/assists.md index 2495af20a..94b5ef85d 100644 --- a/docs/user/assists.md +++ b/docs/user/assists.md | |||
@@ -585,7 +585,7 @@ fn handle(action: Action) { | |||
585 | 585 | ||
586 | ## `replace_let_with_if_let` | 586 | ## `replace_let_with_if_let` |
587 | 587 | ||
588 | Replaces `if let` with an else branch with a `match` expression. | 588 | Replaces `let` with an `if-let`. |
589 | 589 | ||
590 | ```rust | 590 | ```rust |
591 | // BEFORE | 591 | // BEFORE |