From 563adbbea593bc1a81e2d920d9ebac13e2b5e6c0 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Tue, 24 Nov 2015 01:24:27 -0500 Subject: [PATCH] fixed inconsistent indentation in book example looks like a case of mixed tabs and spaces --- src/doc/book/error-handling.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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") { -- 2.44.0