auto merge of #16550 : kaseyc/rust/fix_documentation_error, r=alexcrichton

This commit is contained in:
bors 2014-08-17 16:41:11 +00:00
commit fb018a3d4b

View File

@ -1271,7 +1271,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);
/// }