mirror of
https://github.com/uutils/diffutils.git
synced 2026-06-10 15:48:59 -07:00
Fix trivial typo in error message
This commit is contained in:
+1
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user