about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorJustin Browne <jebdude89@gmail.com>2017-08-10 18:03:22 -0400
committerJustin Browne <jebdude89@gmail.com>2017-08-10 18:03:22 -0400
commit4b80d598c5a87a1b069814c8be744709a1efc460 (patch)
treee7516716aeb52aedc118f654cc15b5538ceb7c80 /src/liballoc
parentb6179602bea71607a9ea63197eca423fcce5f7b0 (diff)
downloadrust-4b80d598c5a87a1b069814c8be744709a1efc460.tar.gz
rust-4b80d598c5a87a1b069814c8be744709a1efc460.zip
Fix broken links in Arc documentation
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/arc.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/arc.rs b/src/liballoc/arc.rs
index 9e314251934..daf556795fa 100644
--- a/src/liballoc/arc.rs
+++ b/src/liballoc/arc.rs
@@ -95,7 +95,7 @@ const MAX_REFCOUNT: usize = (isize::MAX) as usize;
 /// # Cloning references
 ///
 /// Creating a new reference from an existing reference counted pointer is done using the
-/// `Clone` trait implemented for [`Arc<T>`][`arc`] and [`Weak<T>`][`weak`].
+/// `Clone` trait implemented for [`Arc<T>`][arc] and [`Weak<T>`][weak].
 ///
 /// ```
 /// use std::sync::Arc;