We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a947ce3 commit eddc703Copy full SHA for eddc703
asyncgit/src/sync/blame.rs
@@ -43,7 +43,7 @@ pub struct FileBlame {
43
fn fixup_windows_path(path: &str) -> String {
44
#[cfg(windows)]
45
{
46
- path.replace("\\", "/")
+ path.replace('\\', "/")
47
}
48
49
#[cfg(not(windows))]
0 commit comments