about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-06-29 22:22:54 +0000
committerbors <bors@rust-lang.org>2015-06-29 22:22:54 +0000
commit9a26e49459b4069650dd23e5ba35acd5eb868f2e (patch)
treeb706516d5b9eec4473d14a09a1c14c6d070e9529
parentfe283b4067769a9bc653855842fd8279e95e1f3e (diff)
parent8d6b5689fb9bb6ea7c5d38e50525b4d02e2b37c3 (diff)
downloadrust-9a26e49459b4069650dd23e5ba35acd5eb868f2e.tar.gz
rust-9a26e49459b4069650dd23e5ba35acd5eb868f2e.zip
Auto merge of #26660 - steveklabnik:fix_up_pointers, r=alexcrichton
This is a bit outdated.
-rw-r--r--src/doc/guide-pointers.md9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/doc/guide-pointers.md b/src/doc/guide-pointers.md
index 0374166405c..dc80ec43991 100644
--- a/src/doc/guide-pointers.md
+++ b/src/doc/guide-pointers.md
@@ -1,4 +1,7 @@
-% The (old) Rust Pointer Guide
+% The Rust Pointer Guide
 
-This content has moved into
-[the Rust Programming Language book](book/pointers.html).
+This content has been removed, with no direct replacement. Rust only
+has two built-in pointer types now,
+[references](book/references-and-borrowing.html) and [raw
+pointers](book/raw-pointers.html). Older Rusts had many more pointer
+types, they’re gone now.