Skip to content

Commit

Permalink
Merge pull request #107 from n1000/documentation_warning_fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnTitor authored May 30, 2023
2 parents c11eb65 + ba5d54a commit 8e64f97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
//! opts.optflag("h", "help", "print this help menu");
//! let matches = match opts.parse(&args[1..]) {
//! Ok(m) => { m }
//! Err(f) => { panic!(f.to_string()) }
//! Err(f) => { panic!("{}", f.to_string()) }
//! };
//! if matches.opt_present("h") {
//! print_usage(&program, opts);
Expand Down

0 comments on commit 8e64f97

Please sign in to comment.