From a3b708be8da35105132d1cbc81d74442913bb9a4 Mon Sep 17 00:00:00 2001 From: james7132 Date: Thu, 21 Mar 2024 22:14:22 -0700 Subject: [PATCH] Formatting --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index ee9864b..10a871c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -78,7 +78,7 @@ pub struct FixedBitSet { // SAFETY: FixedBitset contains no thread-local state and can be safely sent between threads unsafe impl Send for FixedBitSet {} -// SAFETY: FixedBitset does not provide simultaneous unsynchronized mutable access to the +// SAFETY: FixedBitset does not provide simultaneous unsynchronized mutable access to the // underlying buffer. unsafe impl Sync for FixedBitSet {}