From b4d39f8bf927a1d06dbd491c7eb8560cc6e53d3b Mon Sep 17 00:00:00 2001 From: Sunface Date: Sun, 2 Jul 2023 09:33:39 +0800 Subject: [PATCH] Update en/src/pattern-match/patterns.md --- en/src/pattern-match/patterns.md | 1 + 1 file changed, 1 insertion(+) diff --git a/en/src/pattern-match/patterns.md b/en/src/pattern-match/patterns.md index f86f8d9..26adc1e 100644 --- a/en/src/pattern-match/patterns.md +++ b/en/src/pattern-match/patterns.md @@ -102,6 +102,7 @@ fn main() { ``` 6. 🌟🌟 Using pattern `&mut V` to match a mutable reference requires you to be very careful, due to `V` being a value after matching. + ```rust,editable // FIX the error with least changing