Rollup merge of #40142 - MajorBreakfast:patch-4, r=steveklabnik

Structs doc: Change "pointers" to "references"

Let's call them "references" instead of "pointers". That's how they're called in chapter 4.9 "References and Borrowing".

r? @steveklabnik
This commit is contained in:
Steve Klabnik 2017-02-28 15:38:40 -08:00 committed by GitHub
commit 9b55f531ca
1 changed files with 1 additions and 1 deletions

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