From 684e43e712d1e58799cd81f55e56ff4361108564 Mon Sep 17 00:00:00 2001 From: Caspar Krieger Date: Sat, 7 Feb 2015 21:45:13 +1100 Subject: [PATCH] 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/ --- src/liballoc/rc.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/liballoc/rc.rs b/src/liballoc/rc.rs index 614fe094e30..54ff4c18654 100644 --- a/src/liballoc/rc.rs +++ b/src/liballoc/rc.rs @@ -172,7 +172,7 @@ struct RcBox { /// 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] #[stable(feature = "rust1", since = "1.0.0")] pub struct Rc { @@ -624,7 +624,7 @@ impl fmt::Debug for Rc { /// /// 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] #[unstable(feature = "alloc", reason = "Weak pointers may not belong in this module.")]