about summary refs log tree commit diff
path: root/src/libcollections
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/libcollections
parent2b01a37ec38db9301239f0c0abcf3c695055b0ff (diff)
downloadrust-b4dc9fd72bc0f5730a3fcdfd01d6fd3611093201.tar.gz
rust-b4dc9fd72bc0f5730a3fcdfd01d6fd3611093201.zip
Remove last traces of BitV and BitVSet from documentation
Diffstat (limited to 'src/libcollections')
-rw-r--r--src/libcollections/bit.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcollections/bit.rs b/src/libcollections/bit.rs
index 11c576eab15..7ff34ef3955 100644
--- a/src/libcollections/bit.rs
+++ b/src/libcollections/bit.rs
@@ -110,7 +110,7 @@ fn reverse_bits(byte: u8) -> u8 {
     result
 }
 
-// Take two BitV's, and return iterators of their words, where the shorter one
+// Take two BitVec's, and return iterators of their words, where the shorter one
 // has been padded with 0's
 fn match_words <'a,'b>(a: &'a BitVec, b: &'b BitVec) -> (MatchWords<'a>, MatchWords<'b>) {
     let a_len = a.storage.len();