We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0c0945 commit 6ad8bc9Copy full SHA for 6ad8bc9
src/main.rs
@@ -403,8 +403,8 @@ fn diff_file(
403
// Override here? Separate option or part of existing --override arg?
404
405
let (mut lhs_src, mut rhs_src) = match (
406
- guess_content(&lhs_bytes, &lhs_path, binary_overrides),
407
- guess_content(&rhs_bytes, &rhs_path, binary_overrides),
+ guess_content(&lhs_bytes, lhs_path, binary_overrides),
+ guess_content(&rhs_bytes, rhs_path, binary_overrides),
408
) {
409
(ProbableFileKind::Binary, _) | (_, ProbableFileKind::Binary) => {
410
return DiffResult {
0 commit comments