Use more intra-doc links in BTreeSet

This commit is contained in:
Manish Goregaokar 2020-07-18 11:21:22 -07:00
parent d6d48b4ca9
commit 3168b7d6c0

View file

@ -22,9 +22,9 @@ use super::Recover;
/// to any other item, as determined by the [`Ord`] trait, changes while it is in the set. This is /// to any other item, as determined by the [`Ord`] trait, changes while it is in the set. This is
/// normally only possible through [`Cell`], [`RefCell`], global state, I/O, or unsafe code. /// normally only possible through [`Cell`], [`RefCell`], global state, I/O, or unsafe code.
/// ///
/// [`Ord`]: ../../std/cmp/trait.Ord.html /// [`Ord`]: core::cmp::Ord
/// [`Cell`]: ../../std/cell/struct.Cell.html /// [`Cell`]: core::cell::Cell
/// [`RefCell`]: ../../std/cell/struct.RefCell.html /// [`RefCell`]: core::cell::RefCell
/// ///
/// # Examples /// # Examples
/// ///