diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-11-24 01:24:27 -0500 |
|---|---|---|
| committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-11-24 01:24:27 -0500 |
| commit | 563adbbea593bc1a81e2d920d9ebac13e2b5e6c0 (patch) | |
| tree | 9f2f346d103d7cab9f472984606515478bbd9605 | |
| parent | 77c995b96afbb0572763660b356ed9ee0363422a (diff) | |
| download | rust-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.md | 2 |
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") { |
