Structs doc: Change "pointers" to "references"

This commit is contained in:
Josef Brandl 2017-02-28 10:58:13 +01:00 committed by GitHub
parent 3b4d54ab88
commit 344ad9d8fc

View File

@ -88,7 +88,7 @@ fn main() {
}
```
Your structure can still contain `&mut` pointers, which will let
Your structure can still contain `&mut` references, which will let
you do some kinds of mutation:
```rust