Skip to content

Commit

Permalink
Apply clippy suggestions
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
boozook and github-actions[bot] authored May 30, 2024
1 parent a2227e3 commit 5da646a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cargo/src/package/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -333,11 +333,11 @@ fn build_manifest<Layout: playdate::layout::Layout>(config: &Config,
}
};
let log_src_problem = |problem: Problem| {
let msg = format!("Manifest validation");
let msg = "Manifest validation".to_string();
log_problem(&msg, problem)
};
let log_meta_problem = |problem: Problem| {
let msg = format!("Metadata validation");
let msg = "Metadata validation".to_string();
log_problem(&msg, problem)
};

Expand Down

0 comments on commit 5da646a

Please sign in to comment.