Skip to content

Commit 86493ce

Browse files
committed
Fix indent
1 parent b165799 commit 86493ce

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

1.6/ja/book/error-handling.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2162,11 +2162,11 @@ fn main() {
21622162
21632163
let matches = match opts.parse(&args[1..]) {
21642164
Ok(m) => { m }
2165-
Err(e) => { panic!(e.to_string()) }
2165+
Err(e) => { panic!(e.to_string()) }
21662166
};
21672167
if matches.opt_present("h") {
21682168
print_usage(&program, opts);
2169-
return;
2169+
return;
21702170
}
21712171
let data_path = args[1].clone();
21722172
let city = args[2].clone();

1.9/ja/book/error-handling.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2162,11 +2162,11 @@ fn main() {
21622162
21632163
let matches = match opts.parse(&args[1..]) {
21642164
Ok(m) => { m }
2165-
Err(e) => { panic!(e.to_string()) }
2165+
Err(e) => { panic!(e.to_string()) }
21662166
};
21672167
if matches.opt_present("h") {
21682168
print_usage(&program, opts);
2169-
return;
2169+
return;
21702170
}
21712171
let data_path = args[1].clone();
21722172
let city = args[2].clone();

0 commit comments

Comments
 (0)