diff --git a/src/libcore/cell.rs b/src/libcore/cell.rs index fcfd80d92660d..0d5f921189d7c 100644 --- a/src/libcore/cell.rs +++ b/src/libcore/cell.rs @@ -798,8 +798,6 @@ impl RefCell { /// The borrow lasts until the returned `Ref` exits scope. Multiple immutable borrows can be /// taken out at the same time. /// - /// This is the non-panicking variant of [`borrow`](#method.borrow). - /// /// # Examples /// /// ``` @@ -879,8 +877,6 @@ impl RefCell { /// from it exit scope. The value cannot be borrowed while this borrow is /// active. /// - /// This is the non-panicking variant of [`borrow_mut`](#method.borrow_mut). - /// /// # Examples /// /// ``` @@ -936,8 +932,6 @@ impl RefCell { /// Also, please be aware that this method is only for special circumstances and is usually /// not what you want. In case of doubt, use [`borrow_mut`] instead. /// - /// [`borrow_mut`]: #method.borrow_mut - /// /// # Examples /// /// ```