File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 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> {
656656 fn union ( & mut self , other : & HybridBitSet < T > ) -> bool {
657657 // FIXME: This is slow if `other` is dense, but it hasn't been a problem
658658 // 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
660660 // reopening https://github.com/rust-lang/rust/pull/94625
661661 assert_eq ! ( self . domain_size, other. domain_size( ) ) ;
662662 sequential_update ( |elem| self . insert ( elem) , other. iter ( ) )
@@ -665,7 +665,7 @@ impl<T: Idx> BitRelations<HybridBitSet<T>> for ChunkedBitSet<T> {
665665 fn subtract ( & mut self , other : & HybridBitSet < T > ) -> bool {
666666 // FIXME: This is slow if `other` is dense, but it hasn't been a problem
667667 // 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
669669 // reopening https://github.com/rust-lang/rust/pull/94625
670670 assert_eq ! ( self . domain_size, other. domain_size( ) ) ;
671671 sequential_update ( |elem| self . remove ( elem) , other. iter ( ) )
You can’t perform that action at this time.
0 commit comments