Skip to content

Commit b4dc9fd

Browse files
committed
Remove last traces of BitV and BitVSet from documentation
1 parent 2b01a37 commit b4dc9fd

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/libcollections/bit.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ fn reverse_bits(byte: u8) -> u8 {
110110
result
111111
}
112112

113-
// Take two BitV's, and return iterators of their words, where the shorter one
113+
// Take two BitVec's, and return iterators of their words, where the shorter one
114114
// has been padded with 0's
115115
fn match_words <'a,'b>(a: &'a BitVec, b: &'b BitVec) -> (MatchWords<'a>, MatchWords<'b>) {
116116
let a_len = a.storage.len();

src/libstd/collections/mod.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
//!
2424
//! Rust's collections can be grouped into four major categories:
2525
//!
26-
//! * Sequences: `Vec`, `VecDeque`, `LinkedList`, `BitV`
26+
//! * Sequences: `Vec`, `VecDeque`, `LinkedList`, `BitVec`
2727
//! * Maps: `HashMap`, `BTreeMap`, `VecMap`
28-
//! * Sets: `HashSet`, `BTreeSet`, `BitVSet`
28+
//! * Sets: `HashSet`, `BTreeSet`, `BitSet`
2929
//! * Misc: `BinaryHeap`
3030
//!
3131
//! # When Should You Use Which Collection?
@@ -73,11 +73,11 @@
7373
//! * There is no meaningful value to associate with your keys.
7474
//! * You just want a set.
7575
//!
76-
//! ### Use a `BitV` when:
76+
//! ### Use a `BitVec` when:
7777
//! * You want to store an unbounded number of booleans in a small space.
7878
//! * You want a bit vector.
7979
//!
80-
//! ### Use a `BitVSet` when:
80+
//! ### Use a `BitSet` when:
8181
//! * You want a `VecSet`.
8282
//!
8383
//! ### Use a `BinaryHeap` when:

0 commit comments

Comments
 (0)