Skip to content

Commit

Permalink
Merge pull request #81 from Muhammad-Sarfaraz/patch-1
Browse files Browse the repository at this point in the history
Update top_level_error_handling.rs
  • Loading branch information
ksk001100 authored Jan 19, 2024
2 parents 34c897a + 2bc0009 commit b3282e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/top_level_error_handling.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ fn main() {

match app.run_with_result(args) {
Ok(_) => println!("OK"),
Err(e) => println!("{}", e),
Err(e) => println!("{:?}", e),
};
}

Expand Down

0 comments on commit b3282e4

Please sign in to comment.