Skip to content

Commit 9b55f53

Browse files
authored
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
2 parents aff269b + 344ad9d commit 9b55f53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/book/src/structs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ fn main() {
8888
}
8989
```
9090

91-
Your structure can still contain `&mut` pointers, which will let
91+
Your structure can still contain `&mut` references, which will let
9292
you do some kinds of mutation:
9393

9494
```rust

0 commit comments

Comments
 (0)