about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJosef Brandl <mail@josefbrandl.de>2017-02-28 10:58:13 +0100
committerGitHub <noreply@github.com>2017-02-28 10:58:13 +0100
commit344ad9d8fc72292420aff59c5ae24d1c3546b4fa (patch)
treed89d263361d4634c6a11285ae067acf05cae04fd
parent3b4d54ab88fd522b2f02d7079c601ddec047eba8 (diff)
downloadrust-344ad9d8fc72292420aff59c5ae24d1c3546b4fa.tar.gz
rust-344ad9d8fc72292420aff59c5ae24d1c3546b4fa.zip
Structs doc: Change "pointers" to "references"
-rw-r--r--src/doc/book/src/structs.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/book/src/structs.md b/src/doc/book/src/structs.md
index 6b2a145c85e..71db2b4e3ea 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