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. ///