Update en/src/pattern-match/patterns.md

This commit is contained in:
Sunface
2023-07-02 09:33:39 +08:00
committed by GitHub
parent a3b94a8871
commit b4d39f8bf9

View File

@ -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. 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 ```rust,editable
// FIX the error with least changing // FIX the error with least changing