mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-29 17:05:41 +00:00
Fix broken link to std::rc module docs
Current link structure is /std/rc/struct.Rc.html so ../index.html ends up linking to /std/ rather than /std/rc/
This commit is contained in:
parent
e62fec36b9
commit
684e43e712
@ -172,7 +172,7 @@ struct RcBox<T> {
|
|||||||
|
|
||||||
/// An immutable reference-counted pointer type.
|
/// An immutable reference-counted pointer type.
|
||||||
///
|
///
|
||||||
/// See the [module level documentation](../index.html) for more details.
|
/// See the [module level documentation](./index.html) for more details.
|
||||||
#[unsafe_no_drop_flag]
|
#[unsafe_no_drop_flag]
|
||||||
#[stable(feature = "rust1", since = "1.0.0")]
|
#[stable(feature = "rust1", since = "1.0.0")]
|
||||||
pub struct Rc<T> {
|
pub struct Rc<T> {
|
||||||
@ -624,7 +624,7 @@ impl<T: fmt::Debug> fmt::Debug for Rc<T> {
|
|||||||
///
|
///
|
||||||
/// Weak references do not count when determining if the inner value should be dropped.
|
/// Weak references do not count when determining if the inner value should be dropped.
|
||||||
///
|
///
|
||||||
/// See the [module level documentation](../index.html) for more.
|
/// See the [module level documentation](./index.html) for more.
|
||||||
#[unsafe_no_drop_flag]
|
#[unsafe_no_drop_flag]
|
||||||
#[unstable(feature = "alloc",
|
#[unstable(feature = "alloc",
|
||||||
reason = "Weak pointers may not belong in this module.")]
|
reason = "Weak pointers may not belong in this module.")]
|
||||||
|
Loading…
Reference in New Issue
Block a user