File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
branches/stable/src/libcollections Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -37,4 +37,4 @@ refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
37
37
refs/tags/homu-tmp: c2b30b86df6b34ba19e87e63402e43d9e81a64fb
38
38
refs/heads/gate: 97c84447b65164731087ea82685580cc81424412
39
39
refs/tags/1.0.0-beta: 8cbb92b53468ee2b0c2d3eeb8567005953d40828
40
- refs/heads/stable: 708ad645cf49339169e5c5966031821984cfc499
40
+ refs/heads/stable: 0975d840a7f360e38e58a8b1dd70ef32505aee84
Original file line number Diff line number Diff line change @@ -1434,7 +1434,7 @@ impl BitSet {
1434
1434
bit_vec. nbits = trunc_len * u32:: BITS ;
1435
1435
}
1436
1436
1437
- /// Iterator over each u32 stored in the `BitSet`.
1437
+ /// Iterator over each usize stored in the `BitSet`.
1438
1438
///
1439
1439
/// # Examples
1440
1440
///
@@ -1455,7 +1455,7 @@ impl BitSet {
1455
1455
SetIter { set : self , next_idx : 0 }
1456
1456
}
1457
1457
1458
- /// Iterator over each u32 stored in `self` union `other`.
1458
+ /// Iterator over each usize stored in `self` union `other`.
1459
1459
/// See [union_with](#method.union_with) for an efficient in-place version.
1460
1460
///
1461
1461
/// # Examples
@@ -1555,7 +1555,7 @@ impl BitSet {
1555
1555
} )
1556
1556
}
1557
1557
1558
- /// Iterator over each u32 stored in the symmetric difference of `self` and `other`.
1558
+ /// Iterator over each usize stored in the symmetric difference of `self` and `other`.
1559
1559
/// See [symmetric_difference_with](#method.symmetric_difference_with) for
1560
1560
/// an efficient in-place version.
1561
1561
///
You can’t perform that action at this time.
0 commit comments