Skip to content

Commit b40fcf5

Browse files
committed
Rollup merge of rust-lang#25490 - huachaohuang:patch-1, r=alexcrichton
2 parents 4d3db38 + 6e8e6a4 commit b40fcf5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/trpl/rust-inside-other-languages.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ fn process() {
104104
let handles: Vec<_> = (0..10).map(|_| {
105105
thread::spawn(|| {
106106
let mut _x = 0;
107-
for _ in (0..5_000_001) {
107+
for _ in (0..5_000_000) {
108108
_x += 1
109109
}
110110
})

0 commit comments

Comments
 (0)