From c1103885feb415f82ad36f04f54d229173077a84 Mon Sep 17 00:00:00 2001 From: Niv Kaminer Date: Fri, 10 Aug 2018 14:00:50 +0300 Subject: [PATCH] fix link to PinMut --- src/libcore/marker.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/marker.rs b/src/libcore/marker.rs index b1dc84bb84c..8e674c0bb7f 100644 --- a/src/libcore/marker.rs +++ b/src/libcore/marker.rs @@ -630,8 +630,8 @@ unsafe impl<'a, T: ?Sized> Freeze for &'a mut T {} /// /// This trait is automatically implemented for almost every type. /// -/// [`PinMut`]: ../mem/struct.PinMut.html /// [`replace`]: ../mem/fn.replace.html +/// [`PinMut`]: ../pin/struct.PinMut.html #[unstable(feature = "pin", issue = "49150")] pub auto trait Unpin {}