about summary refs log tree commit diff
diff options
context:
space:
mode:
authorViacheslav Chimishuk <Viacheslav.Chemishuk@keystonett.com>2015-09-01 17:49:08 +0300
committerViacheslav Chimishuk <Viacheslav.Chemishuk@keystonett.com>2015-09-01 17:49:08 +0300
commit5ae8a0d38fc0b3677057a8e76d919240a4734ce5 (patch)
tree5dcddaa5269d6a325db988fcdacf48eaff119327
parent19a33edaa956a842fed11a1293a5aa7336483f0c (diff)
downloadrust-5ae8a0d38fc0b3677057a8e76d919240a4734ce5.tar.gz
rust-5ae8a0d38fc0b3677057a8e76d919240a4734ce5.zip
Source code style fixed: tab replaced with whitespaces.
-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 6129c98259b..0270a92b8c9 100644
--- a/src/doc/trpl/rust-inside-other-languages.md
+++ b/src/doc/trpl/rust-inside-other-languages.md
@@ -111,7 +111,7 @@ fn process() {
             for _ in (0..5_000_000) {
                 x += 1
             }
-	    x
+            x
         })
     }).collect();