about summary refs log tree commit diff
path: root/src/libcollections
diff options
context:
space:
mode:
authorPaul Quint <DrKwint@gmail.com>2015-05-10 18:08:44 -0500
committerPaul Quint <DrKwint@gmail.com>2015-05-10 19:37:24 -0500
commitc98df58593254374dac0ab941fe753e4fd6938e3 (patch)
tree4d57e9fa0600a50f8193a9e80a4e50e308a62412 /src/libcollections
parent9ecc9896dedb426e3f4eb3d23dfc60192fe5275f (diff)
downloadrust-c98df58593254374dac0ab941fe753e4fd6938e3.tar.gz
rust-c98df58593254374dac0ab941fe753e4fd6938e3.zip
Update BitSet docs to correct types
Update BitSet docs to correct type in one more spot

removed accidental file
Diffstat (limited to 'src/libcollections')
-rw-r--r--src/libcollections/bit.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libcollections/bit.rs b/src/libcollections/bit.rs
index 17e937c5af2..fd53f9eee93 100644
--- a/src/libcollections/bit.rs
+++ b/src/libcollections/bit.rs
@@ -1537,7 +1537,7 @@ impl BitSet {
         bit_vec.nbits = trunc_len * u32::BITS;
     }
 
-    /// Iterator over each u32 stored in the `BitSet`.
+    /// Iterator over each usize stored in the `BitSet`.
     ///
     /// # Examples
     ///
@@ -1558,7 +1558,7 @@ impl BitSet {
         SetIter {set: self, next_idx: 0}
     }
 
-    /// Iterator over each u32 stored in `self` union `other`.
+    /// Iterator over each usize stored in `self` union `other`.
     /// See [union_with](#method.union_with) for an efficient in-place version.
     ///
     /// # Examples
@@ -1658,7 +1658,7 @@ impl BitSet {
         })
     }
 
-    /// Iterator over each u32 stored in the symmetric difference of `self` and `other`.
+    /// Iterator over each usize stored in the symmetric difference of `self` and `other`.
     /// See [symmetric_difference_with](#method.symmetric_difference_with) for
     /// an efficient in-place version.
     ///