book: Fix typo

This commit is contained in:
Ori Avtalion 2015-12-26 22:29:02 +02:00
parent 3150dddb0f
commit d6d949a62a

View File

@ -263,7 +263,7 @@ for i in &v {
}
```
This prints out one through three. As we iterate through the vectors, were
This prints out one through three. As we iterate through the vector, were
only given references to the elements. And `v` is itself borrowed as immutable,
which means we cant change it while were iterating: