about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2015-11-24 01:24:27 -0500
committerAlex Gaynor <alex.gaynor@gmail.com>2015-11-24 01:24:27 -0500
commit563adbbea593bc1a81e2d920d9ebac13e2b5e6c0 (patch)
tree9f2f346d103d7cab9f472984606515478bbd9605
parent77c995b96afbb0572763660b356ed9ee0363422a (diff)
downloadrust-563adbbea593bc1a81e2d920d9ebac13e2b5e6c0.tar.gz
rust-563adbbea593bc1a81e2d920d9ebac13e2b5e6c0.zip
fixed inconsistent indentation in book example
looks like a case of mixed tabs and spaces
-rw-r--r--src/doc/book/error-handling.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/book/error-handling.md b/src/doc/book/error-handling.md
index 600019bcceb..e37360a457b 100644
--- a/src/doc/book/error-handling.md
+++ b/src/doc/book/error-handling.md
@@ -1643,7 +1643,7 @@ fn main() {
 
     let matches = match opts.parse(&args[1..]) {
         Ok(m)  => { m }
-		Err(e) => { panic!(e.to_string()) }
+        Err(e) => { panic!(e.to_string()) }
     };
 
     if matches.opt_present("h") {