about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-05-17 11:55:39 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-05-17 11:55:39 +0530
commitb40fcf5b1037cea0fb7b8a2dd4c2b0b185e825d9 (patch)
tree695186e3547d23f139233b373d71d0f4a0066dcc /src
parent4d3db3894063a304aa9183dcc198fdadd75edd22 (diff)
parent6e8e6a4b08e4d2d0e92eb50157e865bf412a3ce8 (diff)
downloadrust-b40fcf5b1037cea0fb7b8a2dd4c2b0b185e825d9.tar.gz
rust-b40fcf5b1037cea0fb7b8a2dd4c2b0b185e825d9.zip
Rollup merge of #25490 - huachaohuang:patch-1, r=alexcrichton
Diffstat (limited to 'src')
-rw-r--r--src/doc/trpl/rust-inside-other-languages.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/rust-inside-other-languages.md b/src/doc/trpl/rust-inside-other-languages.md
index 204dd3895c3..868034ab23a 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
             }
         })