From 7d9c02d16c2e083d482e9d6541565b28afb74dc0 Mon Sep 17 00:00:00 2001 From: Christian Date: Sat, 4 May 2019 12:17:00 +0200 Subject: [PATCH] Removed the dead links from cell.rs --- src/libcore/cell.rs | 6 ------ 1 file changed, 6 deletions(-) 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 /// /// ```