|
1 |
| -// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT |
| 1 | +// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT |
2 | 2 | // file at the top-level directory of this distribution and at
|
3 | 3 | // http://rust-lang.org/COPYRIGHT.
|
4 | 4 | //
|
@@ -151,7 +151,7 @@ use option::Option::{None, Some};
|
151 | 151 |
|
152 | 152 | /// A mutable memory location that admits only `Copy` data.
|
153 | 153 | ///
|
154 |
| -/// See the [module-level documentation](../index.html) for more. |
| 154 | +/// See the [module-level documentation](index.html) for more. |
155 | 155 | #[stable(feature = "rust1", since = "1.0.0")]
|
156 | 156 | pub struct Cell<T> {
|
157 | 157 | value: UnsafeCell<T>,
|
@@ -259,7 +259,7 @@ impl<T:PartialEq + Copy> PartialEq for Cell<T> {
|
259 | 259 |
|
260 | 260 | /// A mutable memory location with dynamically checked borrow rules
|
261 | 261 | ///
|
262 |
| -/// See the [module-level documentation](../index.html) for more. |
| 262 | +/// See the [module-level documentation](index.html) for more. |
263 | 263 | #[stable(feature = "rust1", since = "1.0.0")]
|
264 | 264 | pub struct RefCell<T> {
|
265 | 265 | value: UnsafeCell<T>,
|
@@ -534,7 +534,7 @@ impl<'b> Clone for BorrowRef<'b> {
|
534 | 534 | /// Wraps a borrowed reference to a value in a `RefCell` box.
|
535 | 535 | /// A wrapper type for an immutably borrowed value from a `RefCell<T>`.
|
536 | 536 | ///
|
537 |
| -/// See the [module-level documentation](../index.html) for more. |
| 537 | +/// See the [module-level documentation](index.html) for more. |
538 | 538 | #[stable(feature = "rust1", since = "1.0.0")]
|
539 | 539 | pub struct Ref<'b, T:'b> {
|
540 | 540 | // FIXME #12808: strange name to try to avoid interfering with
|
@@ -595,7 +595,7 @@ impl<'b> BorrowRefMut<'b> {
|
595 | 595 |
|
596 | 596 | /// A wrapper type for a mutably borrowed value from a `RefCell<T>`.
|
597 | 597 | ///
|
598 |
| -/// See the [module-level documentation](../index.html) for more. |
| 598 | +/// See the [module-level documentation](index.html) for more. |
599 | 599 | #[stable(feature = "rust1", since = "1.0.0")]
|
600 | 600 | pub struct RefMut<'b, T:'b> {
|
601 | 601 | // FIXME #12808: strange name to try to avoid interfering with
|
|
0 commit comments