diff options
| author | Kasey Carrothers <kaseyc.808@gmail.com> | 2014-08-16 20:28:20 -0700 |
|---|---|---|
| committer | Kasey Carrothers <kaseyc.808@gmail.com> | 2014-08-16 20:28:20 -0700 |
| commit | 9e514af07e19dd3af2b7ec49d58cc1fe88d3c01e (patch) | |
| tree | 2b7ecc9edce53b7a7492e83fd1782e4e757bf24b | |
| parent | 17bcc1b08cdfea4db272c377eca65c1155076783 (diff) | |
| download | rust-9e514af07e19dd3af2b7ec49d58cc1fe88d3c01e.tar.gz rust-9e514af07e19dd3af2b7ec49d58cc1fe88d3c01e.zip | |
Fix an error in a code sample in bitv.rs
| -rw-r--r-- | src/libcollections/bitv.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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); /// } |
