summary refs log tree commit diff
path: root/src/libcore/ops
diff options
context:
space:
mode:
authorWonwoo Choi <chwo9843@gmail.com>2017-06-13 01:30:08 +0900
committerWonwoo Choi <chwo9843@gmail.com>2017-06-15 00:04:00 +0900
commit3cb78259862d37da082f628af3ccb54edf264fd0 (patch)
tree33c0f28cfa4782dc5d9eb27e7b3faacacd5fe29b /src/libcore/ops
parent554c685b0b3b25b7aa752717edf50b8d6bcab7a0 (diff)
downloadrust-3cb78259862d37da082f628af3ccb54edf264fd0.tar.gz
rust-3cb78259862d37da082f628af3ccb54edf264fd0.zip
Update older URLs pointing to the first edition of the Book
`compiler-plugins.html` is moved into the Unstable Book.
Explanation is slightly modified to match the change.
Diffstat (limited to 'src/libcore/ops')
-rw-r--r--src/libcore/ops/deref.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/ops/deref.rs b/src/libcore/ops/deref.rs
index 3f4dabbbc0c..18cf20ac411 100644
--- a/src/libcore/ops/deref.rs
+++ b/src/libcore/ops/deref.rs
@@ -13,7 +13,7 @@
 ///
 /// `Deref` also enables ['`Deref` coercions'][coercions].
 ///
-/// [coercions]: ../../book/deref-coercions.html
+/// [coercions]: ../../book/first-edition/deref-coercions.html
 ///
 /// # Examples
 ///
@@ -71,7 +71,7 @@ impl<'a, T: ?Sized> Deref for &'a mut T {
 ///
 /// `DerefMut` also enables ['`Deref` coercions'][coercions].
 ///
-/// [coercions]: ../../book/deref-coercions.html
+/// [coercions]: ../../book/first-edition/deref-coercions.html
 ///
 /// # Examples
 ///