about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorNiv Kaminer <nivkner@zoho.com>2018-08-23 01:16:35 +0300
committerNiv Kaminer <nivkner@zoho.com>2018-08-23 10:16:58 +0300
commitb26cce5ec045391d5d38e46c32aae30439b4560f (patch)
tree3c8a47fbab363c58a5d9cfa6e1b9718072bf8162 /src/liballoc
parent3683bf279d5f27ff1bdeb6e0359f9140679526ba (diff)
downloadrust-b26cce5ec045391d5d38e46c32aae30439b4560f.tar.gz
rust-b26cce5ec045391d5d38e46c32aae30439b4560f.zip
link to items in pin module to std docs
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/pin.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/liballoc/pin.rs b/src/liballoc/pin.rs
index a5bc4c75bd5..625c42a6490 100644
--- a/src/liballoc/pin.rs
+++ b/src/liballoc/pin.rs
@@ -35,8 +35,8 @@
 //!
 //! [`PinMut`]: struct.PinMut.html
 //! [`PinBox`]: struct.PinBox.html
-//! [`Unpin`]: ../../core/marker/trait.Unpin.html
-//! [`swap`]: ../../core/mem/fn.swap.html
+//! [`Unpin`]: trait.Unpin.html
+//! [`swap`]: ../../std/mem/fn.swap.html
 //! [`Box`]: ../boxed/struct.Box.html
 //!
 //! # Examples
@@ -115,7 +115,7 @@ use boxed::Box;
 /// See the [module documentation] for furthur explaination on pinning.
 ///
 /// [`Box`]: ../boxed/struct.Box.html
-/// [`Unpin`]: ../../core/marker/trait.Unpin.html
+/// [`Unpin`]: ../../std/marker/trait.Unpin.html
 /// [module documentation]: index.html
 #[unstable(feature = "pin", issue = "49150")]
 #[fundamental]