Update BitSet docs to correct types
Update BitSet docs to correct type in one more spot removed accidental file
This commit is contained in:
parent
708ad645cf
commit
0975d840a7
1 changed files with 3 additions and 3 deletions
|
|
@ -1434,7 +1434,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
|
||||
///
|
||||
|
|
@ -1455,7 +1455,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
|
||||
|
|
@ -1555,7 +1555,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.
|
||||
///
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue