Rollup merge of #30683 - LawrenceWoodman:patch-1, r=steveklabnik
I noticed the alignment was off in the error handling part of the book. This was caused because two tabs had crept into the file. I have changed these for spaces.
This commit is contained in:
commit
4c90f5dc9f
1 changed files with 2 additions and 2 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue