diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2017-08-11 10:20:32 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-08-11 10:20:32 +0200 |
| commit | 77904aad52aa0fdf452dd8ea56f78b0284b0a6f5 (patch) | |
| tree | ed4d407b160fbd1d6b34820975de96bde34adae4 /src/liballoc | |
| parent | 4f5f3faa7d7bf186b733ddae8d75f1a8b8100abd (diff) | |
| parent | 4b80d598c5a87a1b069814c8be744709a1efc460 (diff) | |
| download | rust-77904aad52aa0fdf452dd8ea56f78b0284b0a6f5.tar.gz rust-77904aad52aa0fdf452dd8ea56f78b0284b0a6f5.zip | |
Rollup merge of #43793 - j-browne:master, r=steveklabnik
Fix broken links in Arc documentation Some link references had ticks, when they should not have had them.
Diffstat (limited to 'src/liballoc')
| -rw-r--r-- | src/liballoc/arc.rs | 2 |
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; |
