diff --git a/src/impl_arc_array.rs b/src/impl_arc_array.rs index 966b09098..0225c71ac 100644 --- a/src/impl_arc_array.rs +++ b/src/impl_arc_array.rs @@ -13,12 +13,12 @@ use alloc::sync::Arc; /// /// ***See also all methods for [`ArrayBase`]*** impl ArcArray -where - D: Dimension, +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. - pub fn is_unique(&self) -> bool { + pub fn is_unique(&self) -> bool + { // Only strong pointers are used in this crate. Arc::strong_count(&self.data.0) == 1 }