Skip to content

Commit 684edf7

Browse files
committed
Add titles (tooltips) to defined links in core::pin.
1 parent e65385f commit 684edf7

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

Diff for: library/core/src/pin.rs

+21-21
Original file line numberDiff line numberDiff line change
@@ -349,29 +349,29 @@
349349
//! mutable reference even when you just have <code>[Pin]<[&mut] Self></code> (such as in your own
350350
//! [`poll`] implementation).
351351
//!
352-
//! [Deref]: crate::ops::Deref
353-
//! [`Deref`]: crate::ops::Deref
354-
//! [Target]: crate::ops::Deref::Target
355-
//! [`DerefMut`]: crate::ops::DerefMut
356-
//! [`mem::swap`]: crate::mem::swap
357-
//! [`mem::forget`]: crate::mem::forget
358-
//! [Vec]: ../../std/vec/struct.Vec.html
359-
//! [`Vec::set_len`]: ../../std/vec/struct.Vec.html#method.set_len
360-
//! [Box]: ../../std/boxed/struct.Box.html
361-
//! [Vec::pop]: ../../std/vec/struct.Vec.html#method.pop
362-
//! [Vec::push]: ../../std/vec/struct.Vec.html#method.push
363-
//! [Rc]: ../../std/rc/struct.Rc.html
364-
//! [RefCell]: crate::cell::RefCell
365-
//! [`drop`]: Drop::drop
366-
//! [VecDeque]: ../../std/collections/struct.VecDeque.html
367-
//! [`ptr::write`]: crate::ptr::write
368-
//! [`Future`]: crate::future::Future
352+
//! [Deref]: crate::ops::Deref "ops::Deref"
353+
//! [`Deref`]: crate::ops::Deref "ops::Deref"
354+
//! [Target]: crate::ops::Deref::Target "ops::Deref::Target"
355+
//! [`DerefMut`]: crate::ops::DerefMut "ops::DerefMut"
356+
//! [`mem::swap`]: crate::mem::swap "mem::swap"
357+
//! [`mem::forget`]: crate::mem::forget "mem::forget"
358+
//! [Vec]: ../../std/vec/struct.Vec.html "Vec"
359+
//! [`Vec::set_len`]: ../../std/vec/struct.Vec.html#method.set_len "Vec::set_len"
360+
//! [Box]: ../../std/boxed/struct.Box.html "Box"
361+
//! [Vec::pop]: ../../std/vec/struct.Vec.html#method.pop "Vec::pop"
362+
//! [Vec::push]: ../../std/vec/struct.Vec.html#method.push "Vec::push"
363+
//! [Rc]: ../../std/rc/struct.Rc.html "rc::Rc"
364+
//! [RefCell]: crate::cell::RefCell "cell::RefCell"
365+
//! [`drop`]: Drop::drop "Drop::drop"
366+
//! [VecDeque]: ../../std/collections/struct.VecDeque.html "collections::VecDeque"
367+
//! [`ptr::write`]: crate::ptr::write "ptr::write"
368+
//! [`Future`]: crate::future::Future "future::Future"
369369
//! [drop-impl]: #drop-implementation
370370
//! [drop-guarantee]: #drop-guarantee
371-
//! [`poll`]: crate::future::Future::poll
372-
//! [&]: ../../std/primitive.reference.html
373-
//! [&mut]: ../../std/primitive.reference.html
374-
//! [`unsafe`]: ../../std/keyword.unsafe.html
371+
//! [`poll`]: crate::future::Future::poll "future::Future::poll"
372+
//! [&]: ../../std/primitive.reference.html "shared reference"
373+
//! [&mut]: ../../std/primitive.reference.html "mutable reference"
374+
//! [`unsafe`]: ../../std/keyword.unsafe.html "keyword unsafe"
375375
376376
#![stable(feature = "pin", since = "1.33.0")]
377377

0 commit comments

Comments
 (0)