Skip to content

Commit

Permalink
rollup merge of rust-lang#17888 : gmfawcett/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton committed Oct 13, 2014
2 parents c7e0724 + 7cf1f55 commit e9f241b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcollections/bitv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
//! bv.set(0, false);
//! bv.set(1, false);
//!
//! for i in range(2, max_prime) {
//! for i in iter::range_inclusive(2, (max_prime as f64).sqrt() as uint) {
//! // if i is a prime
//! if bv[i] {
//! // Mark all multiples of i as non-prime (any multiples below i * i
Expand Down

0 comments on commit e9f241b

Please sign in to comment.