Skip to content

Commit

Permalink
Fix clippy issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Kobzol committed Jul 22, 2024
1 parent 8dbe52d commit d6f4193
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/bolt/instrument.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ pub fn bolt_instrument(ctx: CargoContext, args: BoltInstrumentArgs) -> anyhow::R
"{} {} instrumented successfully. Now run {} on your workload.",
capitalize(get_artifact_kind(&artifact)).yellow(),
artifact.target.name.blue(),
cli_format_path(&instrumented_path.display())
cli_format_path(instrumented_path.display())
);
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/bolt/optimize.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ The optimization will probably not be very effective.",
"{} {} successfully optimized with BOLT. You can find it at {}.",
capitalize(get_artifact_kind(&artifact)).yellow(),
artifact.target.name.blue(),
cli_format_path(&optimized_path.display())
cli_format_path(optimized_path.display())
);
}
}
Expand Down

0 comments on commit d6f4193

Please # to comment.