Skip to content

Commit

Permalink
Rollup merge of rust-lang#25490 - huachaohuang:patch-1, r=alexcrichton
Browse files Browse the repository at this point in the history
  • Loading branch information
Manishearth committed May 17, 2015
2 parents 4d3db38 + 6e8e6a4 commit b40fcf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc/trpl/rust-inside-other-languages.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ fn process() {
let handles: Vec<_> = (0..10).map(|_| {
thread::spawn(|| {
let mut _x = 0;
for _ in (0..5_000_001) {
for _ in (0..5_000_000) {
_x += 1
}
})
Expand Down

0 comments on commit b40fcf5

Please sign in to comment.