Skip to content

Commit

Permalink
Fix clippy lint
Browse files Browse the repository at this point in the history
  • Loading branch information
hecrj committed Mar 22, 2024
1 parent fd887a2 commit 4da3070
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/mdbook-iced.rs
Expand Up @@ -34,7 +34,7 @@ fn main() -> Result<(), Error> {
process::exit(0);
}

if let Some(_) = matches.subcommand_matches("clean") {
if matches.subcommand_matches("clean").is_some() {
clean(PathBuf::new())?;

process::exit(0);
Expand Down

0 comments on commit 4da3070

Please sign in to comment.