summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorFlorian Hartwig <florian.j.hartwig@gmail.com>2015-02-21 20:36:44 +0100
committerFlorian Hartwig <florian.j.hartwig@gmail.com>2015-02-21 20:36:44 +0100
commitb4dc9fd72bc0f5730a3fcdfd01d6fd3611093201 (patch)
tree6af218851211bbd8605dbb26fc31199b107fd9d6 /src/libstd
parent2b01a37ec38db9301239f0c0abcf3c695055b0ff (diff)
downloadrust-b4dc9fd72bc0f5730a3fcdfd01d6fd3611093201.tar.gz
rust-b4dc9fd72bc0f5730a3fcdfd01d6fd3611093201.zip
Remove last traces of BitV and BitVSet from documentation
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/collections/mod.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libstd/collections/mod.rs b/src/libstd/collections/mod.rs
index 0e64370df60..100d3e6ed4a 100644
--- a/src/libstd/collections/mod.rs
+++ b/src/libstd/collections/mod.rs
@@ -23,9 +23,9 @@
 //!
 //! Rust's collections can be grouped into four major categories:
 //!
-//! * Sequences: `Vec`, `VecDeque`, `LinkedList`, `BitV`
+//! * Sequences: `Vec`, `VecDeque`, `LinkedList`, `BitVec`
 //! * Maps: `HashMap`, `BTreeMap`, `VecMap`
-//! * Sets: `HashSet`, `BTreeSet`, `BitVSet`
+//! * Sets: `HashSet`, `BTreeSet`, `BitSet`
 //! * Misc: `BinaryHeap`
 //!
 //! # When Should You Use Which Collection?
@@ -73,11 +73,11 @@
 //! * There is no meaningful value to associate with your keys.
 //! * You just want a set.
 //!
-//! ### Use a `BitV` when:
+//! ### Use a `BitVec` when:
 //! * You want to store an unbounded number of booleans in a small space.
 //! * You want a bit vector.
 //!
-//! ### Use a `BitVSet` when:
+//! ### Use a `BitSet` when:
 //! * You want a `VecSet`.
 //!
 //! ### Use a `BinaryHeap` when: