Skip to content

Commit 0d6e51e

Browse files
committed
Fix small typo in FIXME
1 parent b751124 commit 0d6e51e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: compiler/rustc_index/src/bit_set.rs

+2-2
Original file line numberDiff line numberDiff 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())

0 commit comments

Comments
 (0)