Skip to content

Commit 7184849

Browse files
committed
Fix typo writen->written
1 parent 2cd9c49 commit 7184849

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/file_op.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ async fn save_file(
256256
match err.kind() {
257257
ErrorKind::CrossesDevices => {
258258
warn!(
259-
"File writen to {temp_path:?} must be copied to {file_path:?} because it's on a different filesystem"
259+
"File written to {temp_path:?} must be copied to {file_path:?} because it's on a different filesystem"
260260
);
261261
let copy_result = tokio::fs::copy(&temp_path, &file_path).await;
262262
if let Err(e) = tokio::fs::remove_file(&temp_path).await {

0 commit comments

Comments
 (0)