Skip to content

Commit 1096592

Browse files
authored
fix(move_semantics4): Small readbility improvement (#617)
* Small readbility improvement move_semantics4 doc * Remove `an` as it refers to the argument
1 parent d2e7eca commit 1096592

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/move_semantics/move_semantics4.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ fn main() {
1818
println!("{} has length {} content `{:?}`", "vec1", vec1.len(), vec1);
1919
}
2020

21-
// `fill_vec()` no longer take `vec: Vec<i32>` as argument
21+
// `fill_vec()` no longer takes `vec: Vec<i32>` as argument
2222
fn fill_vec() -> Vec<i32> {
2323
let mut vec = vec;
2424

0 commit comments

Comments
 (0)