Skip to content

Commit cd1e8a2

Browse files
authored
Update en/src/collections/vector.md
1 parent e7cfb63 commit cd1e8a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

en/src/collections/vector.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ fn main() {
130130
assert_eq!(slice1, slice2);
131131
132132
// A slice can also be mutable, in which
133-
// case mutating it will mutate its underlying Vec
133+
// case mutating it will mutate its underlying Vec.
134134
// Note: slice and &Vec are different
135135
let vec_ref: &mut Vec<i32> = &mut v;
136136
(*vec_ref).push(4);

0 commit comments

Comments
 (0)