about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-08-17 16:41:11 +0000
committerbors <bors@rust-lang.org>2014-08-17 16:41:11 +0000
commitfb018a3d4b1d45d75cb6118940ca33e7ab7735ce (patch)
treec1b69010dea77f4d6004c746784c3b8271909607
parentdc65307e3be587aa1bee9d17a539822626198f9d (diff)
parent9e514af07e19dd3af2b7ec49d58cc1fe88d3c01e (diff)
auto merge of #16550 : kaseyc/rust/fix_documentation_error, r=alexcrichton
-rw-r--r--src/libcollections/bitv.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcollections/bitv.rs b/src/libcollections/bitv.rs
index 244fa4800d7..f6210a5c014 100644
--- a/src/libcollections/bitv.rs
+++ b/src/libcollections/bitv.rs
@@ -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);
     /// }