From 344ad9d8fc72292420aff59c5ae24d1c3546b4fa Mon Sep 17 00:00:00 2001 From: Josef Brandl Date: Tue, 28 Feb 2017 10:58:13 +0100 Subject: [PATCH] Structs doc: Change "pointers" to "references" --- src/doc/book/src/structs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/book/src/structs.md b/src/doc/book/src/structs.md index 6b2a145c85e51..71db2b4e3ea69 100644 --- a/src/doc/book/src/structs.md +++ b/src/doc/book/src/structs.md @@ -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