1
Fork 0

'borrowed pointer' -> 'reference'

This commit is contained in:
Brian Anderson 2014-01-07 18:49:13 -08:00
parent b65b4d6384
commit d323632669
39 changed files with 185 additions and 186 deletions

View file

@ -71,7 +71,7 @@ traits from other modules. Some notable examples:
## Iteration
The method `iter()` returns an iteration value for a vector or a vector slice.
The iterator yields borrowed pointers to the vector's elements, so if the element
The iterator yields references to the vector's elements, so if the element
type of the vector is `int`, the element type of the iterator is `&int`.
```rust