diff options
| author | Lawrence Woodman <lwoodman@vlifesystems.com> | 2016-01-03 08:15:24 +0000 |
|---|---|---|
| committer | Lawrence Woodman <lwoodman@vlifesystems.com> | 2016-01-03 08:15:24 +0000 |
| commit | e5a846e90e3a5a73a33b2a587eb8c0f6534c1787 (patch) | |
| tree | b001d34ddedfb7e4b4ac340723ba7b5d30050453 | |
| parent | 4744472fe03cceb81747ac9c7c64ae5fe6340c0b (diff) | |
| download | rust-e5a846e90e3a5a73a33b2a587eb8c0f6534c1787.tar.gz rust-e5a846e90e3a5a73a33b2a587eb8c0f6534c1787.zip | |
Correct formatting use of tab instead of spaces
| -rw-r--r-- | src/doc/book/error-handling.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/book/error-handling.md b/src/doc/book/error-handling.md index 3479230f774..0bf99e98c1d 100644 --- a/src/doc/book/error-handling.md +++ b/src/doc/book/error-handling.md @@ -1573,11 +1573,11 @@ 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") { print_usage(&program, opts); - return; + return; } let data_path = args[1].clone(); let city = args[2].clone(); |
