From 811af4289cf58d8ac5a501ade19058d2a86fc170 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Thu, 21 Feb 2019 17:18:18 +0100 Subject: [PATCH] fix link --- 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 255d09a0417..29606cb1903 100644 --- a/src/libcore/marker.rs +++ b/src/libcore/marker.rs @@ -602,7 +602,7 @@ unsafe impl Freeze for &mut T {} /// this trait cannot prevent types from moving by itself. /// /// Instead it is used to prevent moves through the type system, -/// by controlling the behavior of pointers wrapped in the [`Pin`] wrapper, +/// by controlling the behavior of pointers `P` wrapped in the [`Pin

`] wrapper, /// which "pin" the type in place by not allowing it to be moved out of them. /// See the [`pin module`] documentation for more information on pinning. ///