Fix trivial typo in error message

This commit is contained in:
Olivier Tilloy
2024-02-09 17:51:50 +01:00
parent 02632e915c
commit 54a5407bec
+1 -1
View File
@@ -33,7 +33,7 @@ fn main() -> Result<(), String> {
let to_content = match fs::read(&to) {
Ok(to_content) => to_content,
Err(e) => {
return Err(format!("Failed to read from-file: {e}"));
return Err(format!("Failed to read to-file: {e}"));
}
};
// run diff