about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2020-07-18 11:21:22 -0700
committerManish Goregaokar <manishsmail@gmail.com>2020-07-18 11:21:22 -0700
commit3168b7d6c0bb129637e0b6797a5f4a5cf72a807f (patch)
treec36d7cc23f522b15caa6dc03273c0c31521c4209
parentd6d48b4ca992cc9db8f5443a65c0fe28f300f748 (diff)
downloadrust-3168b7d6c0bb129637e0b6797a5f4a5cf72a807f.tar.gz
rust-3168b7d6c0bb129637e0b6797a5f4a5cf72a807f.zip
Use more intra-doc links in BTreeSet
-rw-r--r--src/liballoc/collections/btree/set.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/liballoc/collections/btree/set.rs b/src/liballoc/collections/btree/set.rs
index 530cb0c91b8..35f4ef1d9b4 100644
--- a/src/liballoc/collections/btree/set.rs
+++ b/src/liballoc/collections/btree/set.rs
@@ -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
 /// normally only possible through [`Cell`], [`RefCell`], global state, I/O, or unsafe code.
 ///
-/// [`Ord`]: ../../std/cmp/trait.Ord.html
-/// [`Cell`]: ../../std/cell/struct.Cell.html
-/// [`RefCell`]: ../../std/cell/struct.RefCell.html
+/// [`Ord`]: core::cmp::Ord
+/// [`Cell`]: core::cell::Cell
+/// [`RefCell`]: core::cell::RefCell
 ///
 /// # Examples
 ///