Skip to content

Commit e5a846e

Browse files
Correct formatting use of tab instead of spaces
1 parent 4744472 commit e5a846e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/doc/book/error-handling.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1573,11 +1573,11 @@ fn main() {
15731573
15741574
let matches = match opts.parse(&args[1..]) {
15751575
Ok(m) => { m }
1576-
Err(e) => { panic!(e.to_string()) }
1576+
Err(e) => { panic!(e.to_string()) }
15771577
};
15781578
if matches.opt_present("h") {
15791579
print_usage(&program, opts);
1580-
return;
1580+
return;
15811581
}
15821582
let data_path = args[1].clone();
15831583
let city = args[2].clone();

0 commit comments

Comments
 (0)