diff --git a/en/src/pattern-match/patterns.md b/en/src/pattern-match/patterns.md index 2a3a52e..f86f8d9 100644 --- a/en/src/pattern-match/patterns.md +++ b/en/src/pattern-match/patterns.md @@ -101,7 +101,7 @@ fn main() { } ``` -6. 🌟🌟 Using pattern `&mut V` to match a mutable reference needs 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 // FIX the error with least changing