@@ -226,7 +226,7 @@ use crate::ptr;
226
226
/// assert_eq!(my_struct.special_field.get(), new_value);
227
227
/// ```
228
228
///
229
- /// See the [module-level documentation](index.html ) for more.
229
+ /// See the [module-level documentation](self ) for more.
230
230
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
231
231
#[ repr( transparent) ]
232
232
pub struct Cell < T : ?Sized > {
@@ -566,7 +566,7 @@ impl<T> Cell<[T]> {
566
566
567
567
/// A mutable memory location with dynamically checked borrow rules
568
568
///
569
- /// See the [module-level documentation](index.html ) for more.
569
+ /// See the [module-level documentation](self ) for more.
570
570
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
571
571
pub struct RefCell < T : ?Sized > {
572
572
borrow : Cell < BorrowFlag > ,
@@ -1203,7 +1203,7 @@ impl Clone for BorrowRef<'_> {
1203
1203
/// Wraps a borrowed reference to a value in a `RefCell` box.
1204
1204
/// A wrapper type for an immutably borrowed value from a `RefCell<T>`.
1205
1205
///
1206
- /// See the [module-level documentation](index.html ) for more.
1206
+ /// See the [module-level documentation](self ) for more.
1207
1207
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1208
1208
pub struct Ref < ' b , T : ?Sized + ' b > {
1209
1209
value : & ' b T ,
@@ -1493,7 +1493,7 @@ impl<'b> BorrowRefMut<'b> {
1493
1493
1494
1494
/// A wrapper type for a mutably borrowed value from a `RefCell<T>`.
1495
1495
///
1496
- /// See the [module-level documentation](index.html ) for more.
1496
+ /// See the [module-level documentation](self ) for more.
1497
1497
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1498
1498
pub struct RefMut < ' b , T : ?Sized + ' b > {
1499
1499
value : & ' b mut T ,
0 commit comments