Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
jgallagher committed Dec 18, 2024
1 parent c2beea3 commit 972e820
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions nexus/reconfigurator/blippy/src/report.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,7 @@ pub struct BlippyReportDisplay<'a> {

impl fmt::Display for BlippyReportDisplay<'_> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let pluralize =
if self.report.notes.len() == 1 { "" } else { "s" };
let pluralize = if self.report.notes.len() == 1 { "" } else { "s" };
writeln!(
f,
"blippy report for blueprint {}: {} note{pluralize}",
Expand Down

0 comments on commit 972e820

Please sign in to comment.