From 6e8e6a4b08e4d2d0e92eb50157e865bf412a3ce8 Mon Sep 17 00:00:00 2001 From: Huachao Huang Date: Sat, 16 May 2015 21:44:02 +0800 Subject: [PATCH] Update rust-inside-other-languages.md --- src/doc/trpl/rust-inside-other-languages.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/rust-inside-other-languages.md b/src/doc/trpl/rust-inside-other-languages.md index a1ae50a0c53..307b7093903 100644 --- a/src/doc/trpl/rust-inside-other-languages.md +++ b/src/doc/trpl/rust-inside-other-languages.md @@ -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 } })