Skip to content

Commit

Permalink
clippy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lukewilliamboswell committed Nov 11, 2024
1 parent 8833589 commit 04ab86f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/reporting/src/report.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ pub fn pretty_header_with_path(title: &str, path: &Path) -> String {
};

// ensure path conatians only unix slashes
let path = path.replace("\\", "/");
let path = path.replace('\\', "/");

let header = format!(
"── {} {} {} {}",
Expand Down

0 comments on commit 04ab86f

Please sign in to comment.