fix: typos in error message

This commit is contained in:
electria 2026-07-04 11:04:10 -07:00
commit 32f5503ffc
Signed by: electria
SSH key fingerprint: SHA256:8LlB3ucPbBHqozqkhsNbaV5oG3SlzzqUj8FZDL6IPQs

View file

@ -141,7 +141,9 @@ impl State {
path.display()
));
}
Err(e) => return Some(format!("faled to decode '{}' {e}", path.display())),
Err(e) => {
return Some(format!("failed to decode jxl '{}': {e}", path.display()));
}
}
}