diff --git a/src/liballoc/arc.rs b/src/liballoc/arc.rs index 8c12b9d94ba91..d8f10e6780f88 100644 --- a/src/liballoc/arc.rs +++ b/src/liballoc/arc.rs @@ -93,7 +93,7 @@ const MAX_REFCOUNT: usize = (isize::MAX) as usize; /// /// # Examples /// -/// In this example, a large vector of floats is shared between several threads. +/// In this example, a large vector is shared between several threads. /// With simple pipes, without `Arc`, a copy would have to be made for each /// thread. ///