diff --git a/en/src/collections/vector.md b/en/src/collections/vector.md index e9de6f8..b416eec 100644 --- a/en/src/collections/vector.md +++ b/en/src/collections/vector.md @@ -130,7 +130,7 @@ fn main() { assert_eq!(slice1, slice2); // A slice can also be mutable, in which - // case mutating it will mutate its underlying Vec + // case mutating it will mutate its underlying Vec. // Note: slice and &Vec are different let vec_ref: &mut Vec = &mut v; (*vec_ref).push(4);