We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4744472 commit e5a846eCopy full SHA for e5a846e
src/doc/book/error-handling.md
@@ -1573,11 +1573,11 @@ fn main() {
1573
1574
let matches = match opts.parse(&args[1..]) {
1575
Ok(m) => { m }
1576
- Err(e) => { panic!(e.to_string()) }
+ Err(e) => { panic!(e.to_string()) }
1577
};
1578
if matches.opt_present("h") {
1579
print_usage(&program, opts);
1580
- return;
+ return;
1581
}
1582
let data_path = args[1].clone();
1583
let city = args[2].clone();
0 commit comments