File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -656,7 +656,7 @@ impl<T: Idx> BitRelations<HybridBitSet<T>> for ChunkedBitSet<T> {
656
656
fn union ( & mut self , other : & HybridBitSet < T > ) -> bool {
657
657
// FIXME: This is slow if `other` is dense, but it hasn't been a problem
658
658
// in practice so far.
659
- // If a a faster implementation of this operation is required, consider
659
+ // If a faster implementation of this operation is required, consider
660
660
// reopening https://github.com/rust-lang/rust/pull/94625
661
661
assert_eq ! ( self . domain_size, other. domain_size( ) ) ;
662
662
sequential_update ( |elem| self . insert ( elem) , other. iter ( ) )
@@ -665,7 +665,7 @@ impl<T: Idx> BitRelations<HybridBitSet<T>> for ChunkedBitSet<T> {
665
665
fn subtract ( & mut self , other : & HybridBitSet < T > ) -> bool {
666
666
// FIXME: This is slow if `other` is dense, but it hasn't been a problem
667
667
// in practice so far.
668
- // If a a faster implementation of this operation is required, consider
668
+ // If a faster implementation of this operation is required, consider
669
669
// reopening https://github.com/rust-lang/rust/pull/94625
670
670
assert_eq ! ( self . domain_size, other. domain_size( ) ) ;
671
671
sequential_update ( |elem| self . remove ( elem) , other. iter ( ) )
You can’t perform that action at this time.
0 commit comments