@@ -226,7 +226,7 @@ use crate::ptr;
226226/// assert_eq!(my_struct.special_field.get(), new_value);
227227/// ```
228228///
229- /// See the [module-level documentation](index.html ) for more.
229+ /// See the [module-level documentation](self ) for more.
230230#[ stable( feature = "rust1" , since = "1.0.0" ) ]
231231#[ repr( transparent) ]
232232pub struct Cell < T : ?Sized > {
@@ -566,7 +566,7 @@ impl<T> Cell<[T]> {
566566
567567/// A mutable memory location with dynamically checked borrow rules
568568///
569- /// See the [module-level documentation](index.html ) for more.
569+ /// See the [module-level documentation](self ) for more.
570570#[ stable( feature = "rust1" , since = "1.0.0" ) ]
571571pub struct RefCell < T : ?Sized > {
572572 borrow : Cell < BorrowFlag > ,
@@ -1203,7 +1203,7 @@ impl Clone for BorrowRef<'_> {
12031203/// Wraps a borrowed reference to a value in a `RefCell` box.
12041204/// A wrapper type for an immutably borrowed value from a `RefCell<T>`.
12051205///
1206- /// See the [module-level documentation](index.html ) for more.
1206+ /// See the [module-level documentation](self ) for more.
12071207#[ stable( feature = "rust1" , since = "1.0.0" ) ]
12081208pub struct Ref < ' b , T : ?Sized + ' b > {
12091209 value : & ' b T ,
@@ -1493,7 +1493,7 @@ impl<'b> BorrowRefMut<'b> {
14931493
14941494/// A wrapper type for a mutably borrowed value from a `RefCell<T>`.
14951495///
1496- /// See the [module-level documentation](index.html ) for more.
1496+ /// See the [module-level documentation](self ) for more.
14971497#[ stable( feature = "rust1" , since = "1.0.0" ) ]
14981498pub struct RefMut < ' b , T : ?Sized + ' b > {
14991499 value : & ' b mut T ,
0 commit comments