Skip to content

Commit

Permalink
Rollup merge of rust-lang#40142 - MajorBreakfast:patch-4, r=steveklabnik
Browse files Browse the repository at this point in the history
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
  • Loading branch information
steveklabnik authored Feb 28, 2017
2 parents aff269b + 344ad9d commit 9b55f53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc/book/src/structs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9b55f53

Please sign in to comment.