From cf0f2b041be6f580c18f7925551528bb1df564d8 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Wed, 8 May 2019 17:20:43 +0200 Subject: [PATCH] pin: make the to-module link more visible --- src/libcore/pin.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/pin.rs b/src/libcore/pin.rs index e74ed9b7889cb..4ced860948bee 100644 --- a/src/libcore/pin.rs +++ b/src/libcore/pin.rs @@ -274,7 +274,7 @@ use crate::ops::{Deref, DerefMut, Receiver, CoerceUnsized, DispatchFromDyn}; /// value in place, preventing the value referenced by that pointer from being moved /// unless it implements [`Unpin`]. /// -/// See the [`pin` module] documentation for further explanation on pinning. +/// *See the [`pin` module] documentation for an explanation of pinning.* /// /// [`Unpin`]: ../../std/marker/trait.Unpin.html /// [`pin` module]: ../../std/pin/index.html