From 9e514af07e19dd3af2b7ec49d58cc1fe88d3c01e Mon Sep 17 00:00:00 2001 From: Kasey Carrothers Date: Sat, 16 Aug 2014 20:28:20 -0700 Subject: [PATCH] Fix an error in a code sample in bitv.rs --- src/libcollections/bitv.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcollections/bitv.rs b/src/libcollections/bitv.rs index 7745a0d887e..a3b44b549c2 100644 --- a/src/libcollections/bitv.rs +++ b/src/libcollections/bitv.rs @@ -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); /// }