about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-11-24 09:43:46 -0500
committerSteve Klabnik <steve@steveklabnik.com>2015-11-24 09:43:46 -0500
commitacda78a6633026980195957d85d2f58bdebf615e (patch)
treee8ccdfb400edb418dc6b8d3cdbfdb8205379f4cd
parent731ff93a7654ffe4f093341bf1be230d47ce56b3 (diff)
parent563adbbea593bc1a81e2d920d9ebac13e2b5e6c0 (diff)
Rollup merge of #30019 - alex:patch-1, r=steveklabnik
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") {