From 3d6c796a076771010cacd9234cae454d25474cbf Mon Sep 17 00:00:00 2001 From: Daniel Gurgel Date: Thu, 25 Jul 2024 07:50:56 -0300 Subject: [PATCH] typo --- src/impl_arc_array.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/impl_arc_array.rs b/src/impl_arc_array.rs index f88f8083e..966b09098 100644 --- a/src/impl_arc_array.rs +++ b/src/impl_arc_array.rs @@ -17,7 +17,7 @@ where D: Dimension, { /// Returns `true` iff the inner `Arc` is not shared. - /// If you want to ensure the Arc is not concurrently cloned, you need to provide a `&mut self` to this function. + /// If you want to ensure the `Arc` is not concurrently cloned, you need to provide a `&mut self` to this function. pub fn is_unique(&self) -> bool { // Only strong pointers are used in this crate. Arc::strong_count(&self.data.0) == 1