Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellga committed Jul 29, 2024
1 parent 7fbefc0 commit 3d6c796
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/impl_arc_array.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3d6c796

Please # to comment.