Fix an error in a code sample in bitv.rs

This commit is contained in:
Kasey Carrothers 2014-08-16 20:28:20 -07:00
parent 17bcc1b08c
commit 9e514af07e

View File

@ -1272,7 +1272,7 @@ impl BitvSet {
/// let a = BitvSet::from_bitv(bitv::from_bytes([0b01101000]));
/// let b = BitvSet::from_bitv(bitv::from_bytes([0b10100000]));
///
/// // Print 2, 4 in arbitrary order
/// // Print 1, 4 in arbitrary order
/// for x in a.difference(&b) {
/// println!("{}", x);
/// }