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.
2 parents d78a513 + b4085bb commit 6f3446aCopy full SHA for 6f3446a
src/lib.rs
@@ -53,7 +53,7 @@ pub fn is_different<A: AsRef<Path>, B: AsRef<Path>>(a_base: A, b_base: B) -> Res
53
return Ok(true);
54
}
55
56
- Ok(compare(&a_base, &b_base)? || compare(&b_base, &a_base)?)
+ Ok(compare(a_base, b_base)? || compare(b_base, a_base)?)
57
58
59
fn compare(a_base: &Path, b_base: &Path) -> Result<bool, Error> {
0 commit comments