Skip to content

Commit c30eb31

Browse files
authored
Use "through"
1 parent 0a72b4d commit c30eb31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/book/references-and-borrowing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ fn main() {
8686
return v.iter().fold(0, |a, &b| a + b);
8787
}
8888
// Borrow two vectors and sum them.
89-
// This kind of borrowing does not allow mutation to the borrowed reference.
89+
// This kind of borrowing does not allow mutation through the borrowed reference.
9090
fn foo(v1: &Vec<i32>, v2: &Vec<i32>) -> i32 {
9191
// do stuff with v1 and v2
9292
let s1 = sum_vec(v1);

0 commit comments

Comments
 (0)