Skip to content

Commit

Permalink
clippy: fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
santhosh-tekuri committed Jan 27, 2024
1 parent 89724c8 commit abf0188
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/boon.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ fn main() {
let assert_content = matches.opt_present("assert-content");

// schema --
let Some(schema) = matches.free.get(0) else {
let Some(schema) = matches.free.first() else {
eprintln!("missing SCHEMA");
eprintln!();
eprintln!("{}", opts.usage(BRIEF));
Expand Down

0 comments on commit abf0188

Please sign in to comment.