about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-02-23 14:44:47 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-02-23 23:28:47 +0530
commitc9c5dd4b5bfddbee012acc62090a08f25f0003f8 (patch)
tree25e9aa543af2b23955b7ab1a5049f21ebbb2af20 /src/libstd
parent90d4aaad3a3d551e6e67b585e93636eec4d5e4f0 (diff)
parentb4dc9fd72bc0f5730a3fcdfd01d6fd3611093201 (diff)
downloadrust-c9c5dd4b5bfddbee012acc62090a08f25f0003f8.tar.gz
rust-c9c5dd4b5bfddbee012acc62090a08f25f0003f8.zip
Rollup merge of #22643 - fhartwig:bitvec-doc-fix, r=alexcrichton
 It looks like a few spots in the documentation were missed when renaming `Bitv` and `BitvSet`. This fixes the docs to use their current names.
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: